2021-11-27 14:50:09 +08:00

26 lines
612 B
Vue
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<template>
<el-container>
<el-header>
<el-row justify="space-between">
<el-col :span="12">页面标题 导航条</el-col>
<el-col :span="12" style="text-align:right">
<el-button>功能按钮区</el-button>
<el-button>功能按钮区</el-button>
</el-col>
</el-row>
</el-header>
<el-main>
{{ userName }}: 你好这里是为下一代 ThinkAdmin 后台管理系统预设计的 UI 结构
</el-main>
</el-container>
</template>
<script>
export default {
data() {
return {
userName: "ThinkAdmin"
}
}
}
</script>