index.vue 469 B

123456789101112131415161718192021222324
  1. <template>
  2. <div>
  3. <h4>开发中...</h4>
  4. <!-- <button v-if="hasPermission('system:role:query')">测试权限 </button> -->
  5. </div>
  6. </template>
  7. <script>
  8. export default {
  9. name: 'Dasboard',
  10. props: [],
  11. data() {
  12. return {}
  13. },
  14. computed: {},
  15. methods: {},
  16. created() {
  17. // console.log('--------------------- index created')
  18. },
  19. mounted() {},
  20. components: {}
  21. }
  22. </script>
  23. <style lang='scss' scoped>
  24. </style>