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.
10 lines
271 B
10 lines
271 B
6 years ago
|
window.Vue = require('vue');
|
||
|
|
||
|
Vue.component('column-editor', require('./components/ColumnEditor.vue'));
|
||
|
Vue.component('row-editor', require('./components/RowEditor.vue'));
|
||
|
Vue.component('v-icon', require('./components/Icon.vue'));
|
||
|
|
||
|
const app = new Vue({
|
||
|
el: '#app'
|
||
|
});
|