mirror of
https://gitlab.com/bramw/baserow.git
synced 2025-04-27 14:06:13 +00:00
39 lines
1.6 KiB
JavaScript
39 lines
1.6 KiB
JavaScript
import Vue from 'vue'
|
|
|
|
import Context from '@baserow/modules/core/components/Context'
|
|
import Modal from '@baserow/modules/core/components/Modal'
|
|
import Editable from '@baserow/modules/core/components/Editable'
|
|
import Dropdown from '@baserow/modules/core/components/Dropdown'
|
|
import DropdownItem from '@baserow/modules/core/components/DropdownItem'
|
|
import Checkbox from '@baserow/modules/core/components/Checkbox'
|
|
import Scrollbars from '@baserow/modules/core/components/Scrollbars'
|
|
import Error from '@baserow/modules/core/components/Error'
|
|
import SwitchInput from '@baserow/modules/core/components/SwitchInput'
|
|
import Copied from '@baserow/modules/core/components/Copied'
|
|
|
|
import lowercase from '@baserow/modules/core/filters/lowercase'
|
|
import uppercase from '@baserow/modules/core/filters/uppercase'
|
|
import formatBytes from '@baserow/modules/core/filters/formatBytes'
|
|
|
|
import scroll from '@baserow/modules/core/directives/scroll'
|
|
import preventParentScroll from '@baserow/modules/core/directives/preventParentScroll'
|
|
import tooltip from '@baserow/modules/core/directives/tooltip'
|
|
|
|
Vue.component('Context', Context)
|
|
Vue.component('Modal', Modal)
|
|
Vue.component('Editable', Editable)
|
|
Vue.component('Dropdown', Dropdown)
|
|
Vue.component('DropdownItem', DropdownItem)
|
|
Vue.component('Checkbox', Checkbox)
|
|
Vue.component('Scrollbars', Scrollbars)
|
|
Vue.component('Error', Error)
|
|
Vue.component('SwitchInput', SwitchInput)
|
|
Vue.component('Copied', Copied)
|
|
|
|
Vue.filter('lowercase', lowercase)
|
|
Vue.filter('uppercase', uppercase)
|
|
Vue.filter('formatBytes', formatBytes)
|
|
|
|
Vue.directive('scroll', scroll)
|
|
Vue.directive('preventParentScroll', preventParentScroll)
|
|
Vue.directive('tooltip', tooltip)
|