| | |
| | | <script setup lang="ts"> |
| | | import { ref } from "vue"; |
| | | import Header from "./layout/Header.vue"; |
| | | import TreeMenu from "./components/TreeMenu.vue"; |
| | | import { ElConfigProvider } from "element-plus"; |
| | | import zhCn from "element-plus/es/locale/lang/zh-cn"; |
| | | |
| | | const menuItem = ref("/"); |
| | | |
| | | const handMenu = (key: string) => { |
| | | menuItem.value = key; |
| | | }; |
| | | </script> |
| | | |
| | | <template> |
| | | <!-- <el-config-provider :locale="zhCn"> |
| | | <el-container class="common-layout"> |
| | |
| | | </el-container> |
| | | </el-config-provider> --> |
| | | </template> |
| | | |
| | | <script setup lang="ts"> |
| | | |
| | | </script> |
| | | <style></style> |