You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
{{.Header}}
|
|
|
|
<body class="text-center">
|
|
|
|
<div id="app" style="width:100%">
|
|
|
|
<template>
|
|
|
|
<el-container v-loading.fullscreen.lock="fullscreenLoading">
|
|
|
|
<el-aside>
|
|
|
|
<el-menu default-active="1" @open="1">
|
|
|
|
<el-submenu index="1">
|
|
|
|
<template slot="title">
|
|
|
|
<i class="el-icon-location"></i>
|
|
|
|
<span>账户中心</span>
|
|
|
|
</template>
|
|
|
|
<el-menu-item-group>
|
|
|
|
<el-menu-item index="1-1">设置密码</el-menu-item>
|
|
|
|
<el-menu-item index="1-2">新增用户</el-menu-item>
|
|
|
|
</el-menu-item-group>
|
|
|
|
</el-submenu>
|
|
|
|
</el-menu>
|
|
|
|
</el-aside>
|
|
|
|
|
|
|
|
<el-main class="mainMain">
|
|
|
|
aaa
|
|
|
|
</el-main>
|
|
|
|
|
|
|
|
</el-container>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
</div>
|
|
|
|
</body>
|
|
|
|
<script>
|
|
|
|
new Vue({
|
|
|
|
el: '#app',
|
|
|
|
delimiters:["<{","}>"],
|
|
|
|
data: {
|
|
|
|
fullscreenLoading:true,
|
|
|
|
},
|
|
|
|
methods: {
|
|
|
|
|
|
|
|
},
|
|
|
|
created: function () {
|
|
|
|
this.fullscreenLoading=false;
|
|
|
|
}
|
|
|
|
})
|
|
|
|
|
|
|
|
</script>
|
|
|
|
</html>
|