javascript - vue-router 中的 router-link 不能點擊
問題描述
<template> <p class='header'> <ul class='firstnav'> <li><h3 class='logo'><img src='http://www.gepszalag.com/assets/logo.png'><i>CNODEJS</i></h3> </li> <li><router-link to='/'>首頁</router-link></li> <li><router-link to='/create'>發表</router-link></li> <li><router-link to='/messages'>消息</router-link></li> <li><router-link to='/userinfo'>我的</router-link></li> <li><router-link to='/about'>關于</router-link></li> </ul> </p></template><script type='text/ecmascript-6'>export default { name: ’header’,}</script><!-- Add 'scoped' attribute to limit CSS to this component only --><style lang='css' scoped> ul{ list-style-type: none } .header{ /*box-shadow: 0 0 1px rgba(0,0,0,0.25);*/ box-shadow: 0 1px 4px #ccc; font-size: 15px; background: #fff; position: fixed; width: 100%; top:0; /*min-width: 1000px;*/ } .firstnav{ display:block; width: 1000px; padding:0; margin: 0 auto; } .firstnav>li { float: left; display: inline-block; height: 50px; margin: 10px 0; } .firstnav>li>a{ line-height: 50px; padding:5px 10px; margin: 0 10px; /*border-bottom: 2px solid #41B883;*/ } .firstnav>li>a:hover{ /*border-bottom: 2px solid #41B883;*/ background: #F3F3F3; border-radius: 2px; } .logo{ margin: 0 100px 0 0; color: #41B883; } .logo img{ display: inline-block; width: 50px; height: 50px; }</style>
問題解答
回答1:<router-link :to='' tag='li'></router-link>可以不要<li>了
回答2:把<li><router-link to='/'>首頁</router-link></li>改成
<router-link to='/' tag='li'>首頁</router-link><!-- 渲染結果 --><li>首頁</li>
試試
相關文章:
1. css - 求推薦幾款好用的移動端頁面布局調試工具呢?2. javascript - 百度echarts series數據更新問題3. css3 - 手機網頁中用css寫1px的描邊,為什么需要加一句overflow:hidden才能真正顯示1px?4. php - 第三方支付平臺在很短時間內多次異步通知,訂單多次確認收款5. Mysql && Redis 并發問題6. javascript - node服務端渲染的困惑7. css3 - css before 中文亂碼?8. mysql - 一個表和多個表是多對多的關系,該怎么設計9. python - type函數問題10. mysql新建字段時 timestamp NOT NULL DEFAULT ’0000-00-00 00:00:00’ 報錯
