123456789101112131415161718192021222324 |
- <template>
- <div>
- <h4>开发中...</h4>
- <!-- <button v-if="hasPermission('system:role:query')">测试权限 </button> -->
- </div>
- </template>
- <script>
- export default {
- name: 'Dasboard',
- props: [],
- data() {
- return {}
- },
- computed: {},
- methods: {},
- created() {
- // console.log('--------------------- index created')
- },
- mounted() {},
- components: {}
- }
- </script>
- <style lang='scss' scoped>
- </style>
|