luohairen
2024-11-04 06419b10e17c72e07f1c740836e5abb79df619d0
src/views/menu/index.vue
@@ -25,7 +25,7 @@
<script setup>
import { ref } from 'vue';
import {useRouter} from 'vue-router';
import { useRouter } from 'vue-router';
const router = useRouter();
@@ -34,9 +34,14 @@
    name: '课程',
    categroy: [
      {
        title: '我的课程',
        title: '在线培训',
        iconPath: new URL('@/assets/icons/icon2.png', import.meta.url).href,
        path: '/train'
      },
      {
        title: '教学资源',
        iconPath: new URL('@/assets/icons/icon1.png', import.meta.url).href,
        path: '/exam-list'
        path: '/folder'
      },
    ]
  },
@@ -53,15 +58,20 @@
        iconPath: new URL('@/assets/icons/icon1.png', import.meta.url).href,
        path: '/grade-list'
      },
      {
        title: '我的错题',
        iconPath: new URL('@/assets/icons/icon3.png', import.meta.url).href,
        path: '/wrong-list'
      },
    ]
  },
]);
const menuClick = (item) => {
  if(item.path) {
  if (item.path) {
    router.push(item.path);
  }
}
};
</script>
<style lang="scss" scoped>