1
0
mirror of https://github.com/PanJiaChen/vue-element-admin.git synced 2025-04-05 19:41:51 +08:00
This commit is contained in:
handsomewu 2024-11-14 11:17:07 +08:00
parent 1242d2d3f2
commit adc0bf2ef4
4 changed files with 36 additions and 0 deletions

View File

@ -1,5 +1,6 @@
<template> <template>
<div class="dashboard-editor-container"> <div class="dashboard-editor-container">
me
<el-image <el-image
style="width: 100%; height: 100%" style="width: 100%; height: 100%"
:src="require('@/assets/custom-theme/topology.png')" :src="require('@/assets/custom-theme/topology.png')"

View File

@ -1,6 +1,7 @@
<template> <template>
<div class="dashboard-container"> <div class="dashboard-container">
<component :is="currentRole" /> <component :is="currentRole" />
</div> </div>
</template> </template>

View File

@ -0,0 +1,17 @@
<template>
<div class="app-container">
me
</div>
</template>
<script>
export default {
name: 'Service',
data() {
return {
tableData: [] // mounted
}
}
}
</script>

View File

@ -0,0 +1,17 @@
<template>
<div class="app-container">
me
</div>
</template>
<script>
export default {
name: 'Service',
data() {
return {
tableData: [] // mounted
}
}
}
</script>