datatable.directory codebase
https://datatable.directory/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
652 B
21 lines
652 B
window.Vue = require('vue')
|
|
|
|
const ColumnEditor = Vue.component('column-editor', require('./components/ColumnEditor.vue'))
|
|
const RowsEditor = Vue.component('rows-editor', require('./components/RowsEditor.vue'))
|
|
const Icon = Vue.component('v-icon', require('./components/Icon.vue'))
|
|
|
|
// const app = new Vue({
|
|
// el: '#app'
|
|
// });
|
|
|
|
window.app = {
|
|
ColumnEditor: function (selector, data) {
|
|
new ColumnEditor({ propsData: data }).$mount(selector)
|
|
},
|
|
RowsEditor: function (selector, data) {
|
|
new RowsEditor({ propsData: data }).$mount(selector)
|
|
},
|
|
Icon: function (selector, data) {
|
|
new Icon({ propsData: data }).$mount(selector)
|
|
}
|
|
}
|
|
|