12345678910111213141516 |
- <script lang="ts">
- import { defineComponent, ref } from 'vue'
- export default defineComponent({
- setup(){
- },
- asyncData({store, route}:any){
- return store.dispatch('getMenuList')
- }
- })
- </script>
- <template>
-
- </template>
- <style lang="scss" scoped>
- </style>
|