|
@@ -0,0 +1,16 @@
|
|
|
+import Vue from 'vue'
|
|
|
+
|
|
|
+import MButton from './components/AutoComponents/MButton'
|
|
|
+import MCard from './components/AutoComponents/MCard'
|
|
|
+import MDialog from './components/AutoComponents/MDialog'
|
|
|
+import MForm from './components/AutoComponents/MForm'
|
|
|
+import MSearch from './components/AutoComponents/MSearch'
|
|
|
+import MTable from './components/AutoComponents/MTable'
|
|
|
+
|
|
|
+// 全局注册组件
|
|
|
+Vue.component('MButton', MButton)
|
|
|
+Vue.component('MCard', MCard)
|
|
|
+Vue.component('MDialog', MDialog)
|
|
|
+Vue.component('MForm', MForm)
|
|
|
+Vue.component('MSearch', MSearch)
|
|
|
+Vue.component('MTable', MTable)
|