Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
前端:各组件增加组件名称
  • Loading branch information
4linuxfun committed Jan 12, 2023
commit 288b3badb44824ceb604e07f55c981fe69c8b19f
6 changes: 6 additions & 0 deletions www/src/views/system/dictonary/index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,12 @@

</template>

<script>
export default {
name: '数据字典'
}
</script>

<script setup>
import {
Search,
Expand Down
6 changes: 6 additions & 0 deletions www/src/views/system/menus/index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,12 @@
</el-drawer>

</template>

<script>
export default {
name: '菜单管理'
}
</script>
<script setup>
import {Plus, ArrowDown} from '@element-plus/icons-vue'
import {ElMessageBox} from 'element-plus'
Expand Down
6 changes: 6 additions & 0 deletions www/src/views/system/roles/index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,12 @@
</div>

</template>

<script>
export default {
name: '角色管理'
}
</script>
<script setup>
import {reactive, ref, watch} from 'vue'
import {Search, RefreshRight, Plus} from '@element-plus/icons-vue'
Expand Down
5 changes: 5 additions & 0 deletions www/src/views/system/user/index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,11 @@
</el-drawer>

</template>
<script>
export default {
name: '用户管理'
}
</script>
<script setup>
import {
onMounted,
Expand Down