修改 ui 包结构.

This commit is contained in:
lijiahang
2023-07-29 13:11:19 +08:00
parent 900cd1c1d7
commit 5bee3b98a7
28 changed files with 149 additions and 365 deletions

View File

@@ -1,10 +1,12 @@
<template>
<p>UserChild</p>
<div>
<p>UserChild 1</p>
</div>
</template>
<script>
export default {
name: 'UserChild',
name: 'UserChild1',
};
</script>

View File

@@ -0,0 +1,16 @@
<template>
<div>
<p>UserChild 2</p>
<h1 v-permission="['admin']">123</h1>
</div>
</template>
<script>
export default {
name: 'UserChild2',
};
</script>
<style scoped>
</style>

View File

@@ -1,13 +0,0 @@
<template>
<p>这是user组件</p>
</template>
<script>
export default {
name: 'User',
};
</script>
<style scoped>
</style>