index.vue 299 B

12345678910111213141516
  1. <script lang="ts">
  2. import { defineComponent, ref } from 'vue'
  3. export default defineComponent({
  4. setup(){
  5. },
  6. asyncData({store, route}:any){
  7. return store.dispatch('getMenuList')
  8. }
  9. })
  10. </script>
  11. <template>
  12. </template>
  13. <style lang="scss" scoped>
  14. </style>