@dcodegroup-au/vuetable-3
Version:
Datatable component for Vue 3.x built with Vite/ESM
35 lines (33 loc) • 639 B
text/typescript
// TODO: create typescript version
import Vue from "vue";
import Component from "vue-class-component";
export default class MyMixin extends Vue {
myMixinValue = "Fetch my mixin";
}
// export default {
// props: {
// rowData: {
// type: Object,
// default: null
// },
// rowIndex: {
// type: Number
// },
// rowField: {
// type: Object
// },
// isHeader: {
// type: Boolean,
// default: false
// },
// title: {
// type: String,
// default: ""
// },
// vuetable: {
// type: Object,
// default: null
// }
// }
// };