1234567891011121314151617181920212223242526 |
- <script>
- export default {
- data() {
- return{
- }
- },
- mounted(){
- },
- methods:{
- }
- }
- </script>
- <template>
- <div class="auth-view">权限查看</div>
- </template>
- <style lang="less" scoped>
- .auth-view{
- width: 100%;
- height: 100%;
- background: #fff;
- border-radius: 4px;
- }
- </style>
|