index.js 3.16 KB
import NCCTreeSelect from '@/components/NCC-treeSelect'
import topOperation from '@/components/NCC-topOperation/index'
import tableOperation from '@/components/NCC-tableOperation'
import Pagination from '@/components/Pagination'
import NCCTable from '@/components/NCC-table'
import UserBox from '@/components/NCC-userBox'
import Screenfull from '@/components/Screenfull'
import ColumnSettings from '@/components/ColumnSettings'
import NCCQuill from '@/components/NCCEditor/quill'
import UserSelect from '@/components/NCC-userSelect'
import uploadBtn from '@/components/NCC-uploadBtn'
// 代码生成器专供
import NCCText from '@/components/Generator/components/NCCText'
import NCCUploadFz from '@/components/Generator/components/Upload/UploadFz'
import NCCUploadImg from '@/components/Generator/components/Upload/UploadImg'
import PopupSelect from '@/components/Generator/components/PopupSelect'
import NumRange from '@/components/Generator/components/NumRange'
import ComSelect from '@/components/Generator/components/ComSelect'
import DepSelect from '@/components/Generator/components/DepSelect'
import PosSelect from '@/components/Generator/components/PosSelect'
import DicSelect from '@/components/Generator/components/DicSelect'
import BillRule from '@/components/Generator/components/BillRule'
import NCCInputTable from '@/components/Generator/components/InputTable'
import NCCAddress from '@/components/Generator/components/Address'
import GroupTitle from '@/components/Generator/components/GroupTitle'
import RelationForm from '@/components/Generator/components/RelationForm'
import RelationFormAttr from '@/components/Generator/components/RelationFormAttr'
import RelationFlow from '@/components/Generator/components/RelationFlow'
import RelationFlowAttr from '@/components/Generator/components/RelationFlowAttr'
import Calculate from '@/components/Generator/components/Calculate'

export default {
  install(Vue, options) {
    Vue.component('NCCTreeSelect', NCCTreeSelect)
    Vue.component('topOpts', topOperation)
    Vue.component('tableOpts', tableOperation)
    Vue.component('Pagination', Pagination)
    Vue.component('NCCTable', NCCTable)
    Vue.component('uploadBtn', uploadBtn)
    Vue.component('UserBox', UserBox)
    Vue.component('NCCText', NCCText)
    Vue.component('NCCUploadFz', NCCUploadFz)
    Vue.component('NCCUploadImg', NCCUploadImg)
    Vue.component('PopupSelect', PopupSelect)
    Vue.component('NumRange', NumRange)
    Vue.component('ComSelect', ComSelect)
    Vue.component('DepSelect', DepSelect)
    Vue.component('PosSelect', PosSelect)
    Vue.component('UserSelect', UserSelect)
    Vue.component('DicSelect', DicSelect)
    Vue.component('BillRule', BillRule)
    Vue.component('NCCInputTable', NCCInputTable)
    Vue.component('NCCAddress', NCCAddress)
    Vue.component('GroupTitle', GroupTitle)
    Vue.component('RelationForm', RelationForm)
    Vue.component('RelationFormAttr', RelationFormAttr)
    Vue.component('RelationFlow', RelationFlow)
    Vue.component('RelationFlowAttr', RelationFlowAttr)
    Vue.component('Calculate', Calculate)
    Vue.component('NCCQuill', NCCQuill)
    Vue.component('Screenfull', Screenfull)
    Vue.component('ColumnSettings', ColumnSettings)
  }
}