This commit is contained in:
ky_sunl
2021-04-15 02:38:34 +00:00
parent 8d24064199
commit 1ae274f845
2 changed files with 4 additions and 5 deletions

View File

@@ -46,6 +46,10 @@ import Container from './components/container'
Vue.component('Container', Container)
import Authorized from './components/authorized'
Vue.component('Auth', Authorized)
import YoTable from './components/yoTable'
Vue.component('YoTable', YoTable)
import YoTableActions from './components/yoTableActions'
Vue.component('YoTableActions', YoTableActions)
/**
* 引入主题样式

View File

@@ -63,16 +63,11 @@
</container>
</template>
<script>
import YoTable from '@/components/yoTable';
import YoTableActions from '@/components/yoTableActions';
import AddForm from './addForm';
import EditForm from './editForm';
export default {
components: {
YoTable,
YoTableActions,
AddForm,
EditForm,
},