index.vue 380B

1234567891011121314151617181920212223
  1. <template>
  2. <div class="mainPage flex-v">
  3. <h1 class="centerLabel">暂无菜单权限</h1>
  4. </div>
  5. </template>
  6. <script>
  7. export default {
  8. name: '',
  9. data () {
  10. return {}
  11. },
  12. methods: {}
  13. }
  14. </script>
  15. <!-- Add "scoped" attribute to limit CSS to this component only -->
  16. <style lang="scss" scoped>
  17. h1{
  18. font-size: 30px;
  19. color: #ccc;
  20. }
  21. </style>