<template > <div class="product-wrap" > <div class="product" v-for="product in products" :key="product.id" @click="handleClick(product.id)"> <img :src="product.image" alt="" > <div> <span>{{ product.name }}</span> <h4>¥{{ product.price }}</h4> </div> <component :is="currentComponent"></component> </div> </div> </template> <script> export default { name: 'GoodsList', data() { return { products: [ { id: 'GoodsDetail01', name: '多普勒效应马克杯', price: 35.50, image: require('../assets/1_DopplerEffect_多普勒效应_White.png') }, { id: 'GoodsDetail02', name: '透镜成像公式马克杯', price: 40.99, image: require('../assets/3_LensEquation_透镜成像公式_White.png') }, { id: 3, name: '黑洞温度马克杯', price: 32.00, image: require('../assets/5_BlackHoleTemperature_黑洞温度_White.png') }, { id: 4, name: '爱因斯坦场方程马克杯', price: 45.00, image: require('../assets/6_EinsteinFieldEquations_爱因斯坦场方程_White.png') } ], currentComponent: null } }, methods:{ // handleClick(){ // this.$emit('click', 'GoodsDetail01') //点击后跳转到 GoodsDetail01 页面 // } handleClick(id) { this.currentComponent = id } } } </script> <style> .product-wrap { width: 1200px; margin: 50px auto; display: flex; justify-content: space-between } .product { border: 1px solid #ececee; border-radius: 5px; cursor: pointer; transition: .5s; } .product:hover { border: 1px solid #979797; box-shadow: 0px 0px 7px #979797; } .product img { width: 270px; padding: 10px; border-bottom: 1px solid #ececee; } .product>div { display: flex; justify-content: space-between; align-items: center; padding: 0 10px; } </style>goodslist商品主页点击跳转到goodsdetail01和goodsdetail02,不能用路由写出全部代码
时间: 2023-06-17 08:07:30 浏览: 292
深入浅析Vue.js 中的 v-for 列表渲染指令
如果不能使用路由,那么可以在 `handleClick` 方法中,根据 `id` 手动跳转到对应的页面。可以使用 `location.href` 或者 `window.location.replace` 方法来实现跳转。
以下是示例代码:
```
handleClick(id) {
if (id === 'GoodsDetail01') {
location.href = '/goodsdetail01.html';
} else if (id === 'GoodsDetail02') {
location.href = '/goodsdetail02.html';
}
}
```
需要注意的是,这里的跳转地址需要根据实际情况进行修改。同时,如果需要在跳转后依然能够正常使用 Vue 组件,需要在跳转后重新加载 Vue 应用。可以在跳转时添加一个参数,然后在跳转后通过该参数来判断是否需要重新加载 Vue 应用。例如:
```
location.href = '/goodsdetail01.html?reload=true';
```
在 `goodsdetail01.html` 页面中,可以在页面加载时判断是否需要重新加载 Vue 应用,示例代码如下:
```
if (location.search.includes('reload=true')) {
// 加载 Vue 应用
new Vue({
el: '#app',
components: { GoodsDetail01 },
template: '<GoodsDetail01 />'
});
}
```
阅读全文