mirror of
https://github.com/nocodb/nocodb.git
synced 2026-04-29 04:36:49 +00:00
refactor(gui): linting
Signed-off-by: Pranav C <61551451+pranavxc@users.noreply.github.com>
This commit is contained in:
@@ -3,12 +3,11 @@ import Vue from 'vue'
|
||||
import DatetimePicker from 'vuetify-datetime-picker'
|
||||
import vueKanban from 'vue-kanban'
|
||||
|
||||
Vue.use(DatetimePicker);
|
||||
Vue.use(DatetimePicker)
|
||||
Vue.use(vueKanban)
|
||||
|
||||
|
||||
const components = require.context('@/components/global', false, /[A-Z]\w+\.(vue)$/)
|
||||
components.keys().forEach(fileName => {
|
||||
components.keys().forEach((fileName) => {
|
||||
const componentConfig = components(fileName)
|
||||
const componentName = fileName.split('/').pop().split('.')[0]
|
||||
Vue.component(componentName, componentConfig.default || componentConfig)
|
||||
|
||||
Reference in New Issue
Block a user