支持三级菜单自动配置组件&缓存数据

This commit is contained in:
RuoYi
2020-12-16 21:48:03 +08:00
parent 019359f799
commit c93c99d892
6 changed files with 65 additions and 14 deletions

View File

@@ -1,3 +0,0 @@
<template>
<router-view />
</template>

View File

@@ -1,5 +1,15 @@
<template>
<div style="padding:30px;">
<el-alert :closable="false" title="三级菜单1" type="success" />
<el-input v-model="input" placeholder="请输入内容" />
</div>
</template>
<script>
export default {
name: 'Test',
data() {
return {
input: ''
}
}
}
</script>