Browse Source

处理热门搜索跳转问题

wangcz 6 years ago
parent
commit
e599e6dbba
1 changed files with 1 additions and 1 deletions
  1. 1 1
      components/main/Search.vue

+ 1 - 1
components/main/Search.vue

@@ -47,7 +47,7 @@
       <ul class="list-untyled">
         <li class="item item-first">热门搜索</li>
         <li class="item" v-for="w in hotDeviceBrand">
-          <nuxt-link :to="{path: w.detailsLink}">{{ w.title }}</nuxt-link>
+          <a :href="w.detailsLink">{{ w.title }}</a>
         </li>
       </ul>
     </div>