33 lines
478 B
Vue
33 lines
478 B
Vue
<template>
|
|
<div class="app-container">
|
|
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import { genTree, deepClone } from "@/utils";
|
|
import checkPermission from "@/utils/permission";
|
|
import Pagination from "@/components/Pagination"; // secondary package based on el-pagination
|
|
|
|
|
|
export default {
|
|
components: { Pagination },
|
|
watch: {
|
|
},
|
|
data() {
|
|
return {
|
|
formData:{}
|
|
};
|
|
},
|
|
computed: {},
|
|
watch: {
|
|
|
|
},
|
|
created() {
|
|
|
|
},
|
|
methods: {
|
|
},
|
|
};
|
|
</script>
|