Forráskód Böngészése

Merge branch 'master' of http://192.168.0.115:3000/renyicun/NanjingMuseumWuJinZang-PC

任一存 1 éve
szülő
commit
cc252fdd2d
3 módosított fájl, 53 hozzáadás és 20 törlés
  1. 36 20
      public/configExcel.js
  2. 7 0
      src/router/index.js
  3. 10 0
      src/views/PaintingDetail.vue

A különbségek nem kerülnek megjelenítésre, a fájl túl nagy
+ 36 - 20
public/configExcel.js


+ 7 - 0
src/router/index.js

@@ -1,6 +1,7 @@
 import { createRouter, createWebHashHistory } from 'vue-router'
 import HomeView from '../views/HomeView.vue'
 import MoreContent from '../views/MoreContent.vue'
+import PaintingDetail from '../views/PaintingDetail'
 
 // import store from '@/store/index.js'
 
@@ -20,6 +21,12 @@ const routes = [
     component: MoreContent,
     // component: TEXT,
   },
+  {
+    path: '/painting-detail',
+    name: 'PaintingDetail',
+    component: PaintingDetail,
+    // component: TEXT,
+  },
 ]
 
 const router = createRouter({

+ 10 - 0
src/views/PaintingDetail.vue

@@ -0,0 +1,10 @@
+<script setup>
+</script>
+
+<template>
+  <div class="home" />
+</template>
+
+<style lang='less' scoped>
+
+</style>