|
- <!--
- * @Date: 2022-08-08 09:28:25
- * @LastEditors: JinxChen
- * @LastEditTime: 2022-08-08 16:08:32
- * @FilePath: \TelpoUserManageAdmin\src\views\vue-template.vue
- * @description:
- -->
- <template>
- <div class="app-container">
- <!-- 顶部内容 -->
- <div class="top-container">
- <TopMenu :buttonList="buttonList"/>
- </div>
- </div>
- </template>
-
- <script>
- import TopMenu from "@/components/TopMenu/index";
- export default {
- name: 'vue-template',
- components: { TopMenu },
- data(){
- return {
- buttonList: [], // 头部按钮,例子: {name: '添加', type: 'primary', icon: 'el-icon-circle-plus', click: () => { this.AddDialog();}}
- }
- },
- mounted() {},
- created() {},
- methods: {
-
- }
- }
- </script>
-
- <style scoped lang="scss">
-
- </style>
|