8000 Release v3.2.5 · graphieros/vue-data-ui · GitHub
[go: up one dir, main page]

Skip to content

v3.2.5

Compare
Choose a tag to compare
@graphieros graphieros released this 29 Sep 08:11
· 8 commits to master since this release

VueUiTable #255

Add optional title:

const config = ref({
  style: {
    title: {
      text: 'My title',
      color: '#2D353C',
      backgroundColor: '#FFFFFF',
      fontSize: 16,
      bold: true,
      textAlign: 'center',
      paddingLeft: 0,
      paddingRight: 0,
      subtitle: {
        text: 'My subtitle',
        fontSize: 14,
        color: '#6A6A6A',
        bold: false,
      }
    }
  }
})
0