ZhangXianQiang
2024-06-19 da2f959b7f5e0ec28dc29b638dffad8eae305152
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();
@@ -33,6 +33,11 @@
  {
    name: '课程',
    categroy: [
      {
        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,
@@ -58,10 +63,10 @@
]);
const menuClick = (item) => {
  if(item.path) {
  if (item.path) {
    router.push(item.path);
  }
}
};
</script>
<style lang="scss" scoped>