ZhangXianQiang
2024-07-05 98f494cf633e3acf5c20f3e9de0d708f2a6c2045
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'
      },
    ]
  },
@@ -58,10 +63,10 @@
]);
const menuClick = (item) => {
  if(item.path) {
  if (item.path) {
    router.push(item.path);
  }
}
};
</script>
<style lang="scss" scoped>