第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號(hào)安全,請(qǐng)及時(shí)綁定郵箱和手機(jī)立即綁定
已解決430363個(gè)問題,去搜搜看,總會(huì)有你想問的

使用 Vue Router 滾動(dòng)到錨點(diǎn)

使用 Vue Router 滾動(dòng)到錨點(diǎn)

茅侃侃 2023-10-14 16:04:28
我需要在 vuejs 中設(shè)置一個(gè)錨鏈接才能轉(zhuǎn)到:<h1 id="apply">Test anchor</h1>以下內(nèi)容有效,但它將 url 更改為 http://localhost:8080/#/apply<a href="#apply" class="btn btn-primary mt-3">Apply Now</a>如果我刷新頁面,它不知道該去哪里。以下內(nèi)容也不適合我。它甚至不會(huì)下降到#apply。<router-link to="/careers/job-1#apply">test</router-link>如何使用 vuejs 路由設(shè)置錨鏈接?
查看完整描述

2 回答

?
蝴蝶不菲

TA貢獻(xiàn)1810條經(jīng)驗(yàn) 獲得超4個(gè)贊

將 apath和 ahash屬性添加到您的to對(duì)象中:


<router-link :to="{ path: '/careers/job-1', hash: '#apply' }">test</router-link>

并添加scrollBehavior到您的路由器定義中:


const router = new VueRouter({

  ...

  scrollBehavior (to, from, savedPosition) {

    if (to.hash) {

      return {

        selector: to.hash,

        behavior: 'smooth'

      };

    }

    return { x: 0, y: 0 };  // Go to the top of the page if no hash

  },

  ...

})

現(xiàn)在它應(yīng)該滾動(dòng)(平滑,除非您刪除該behavior屬性)到由哈希定義的錨點(diǎn)


查看完整回答
反對(duì) 回復(fù) 2023-10-14
?
SMILET

TA貢獻(xiàn)1796條經(jīng)驗(yàn) 獲得超4個(gè)贊

因此,如果其他人在提出問題幾年后偶然發(fā)現(xiàn)這個(gè)問題,我會(huì)找到另一種方法來實(shí)現(xiàn)所需的行為:


在我的項(xiàng)目中,我喜歡通過傳遞給 vue-router-4 的 createRouter() 方法的配置數(shù)組在導(dǎo)航欄上顯示路由作為示例:


關(guān)鍵只是要了解 vue-router 內(nèi)部如何工作,以及它們?cè)?RouteRecordRaw 類上有一個(gè)名為“redirect”的屬性,它是一個(gè) RouteRecordRedirectOption-Type。在那里我們可以定義它應(yīng)該導(dǎo)航到的哈希:


const routes: Array<RouteRecordRaw> = [

    { name: 'home', path: '/', meta: { name: 'Home' }, component: () => import("@/pages/HomePage.vue") },

    { name: 'members', path: '/', meta: { name: 'Members'} , redirect: { name: 'home', hash: '#members' }},

    { name: 'events', path: '/', meta: { name: 'Events'} , redirect: { name: 'home', hash: '#events' }}

];

如果我們隨后將此數(shù)組傳遞給 createRouter 方法,我們可以通過其 getRoutes() 方法訪問導(dǎo)航欄 vue 文件中的路由列表:


// router.ts

const router = createRouter({

    history: createWebHistory(),

    routes: routes,

    scrollBehavior(to) {

        if (to.hash) return { el: to.hash, behavior: 'smooth' };

        return { top: 0, behavior: 'smooth' };

    }

});


// TheNavbar.vue

const routes = router.getRoutes();

然后可以在 router-link 標(biāo)記中訪問該變量,如下所示:


<router-link v-for="route in routes" :key="route.name" :to="route" class="nav-element">{{ route.meta.name }}</router-link>

為了澄清上述情況,我很少使用 RouteRecordRaw 類的屬性名稱將其顯示在我的導(dǎo)航欄中,因?yàn)樗鼞?yīng)該是小寫的。這是路由的名稱,而不是我們應(yīng)該在前端顯示的內(nèi)容(除了在網(wǎng)址欄中)。因此另一種方法是將所有雜項(xiàng)信息放入元屬性中。


我希望上述解決方案能夠到達(dá)合適的人手中。


查看完整回答
反對(duì) 回復(fù) 2023-10-14
  • 2 回答
  • 0 關(guān)注
  • 231 瀏覽
慕課專欄
更多

添加回答

舉報(bào)

0/150
提交
取消
微信客服

購課補(bǔ)貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動(dòng)學(xué)習(xí)伙伴

公眾號(hào)

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號(hào)