gpt4 book ai didi

javascript - 如何访问 nuxt.js 中的路由器对象

转载 作者:行者123 更新时间:2023-11-28 12:16:38 26 4
gpt4 key购买 nike

我正在使用 nuxt.js 开发一个网站,该网站基于 vue.js。该网站是一个简单的网站,有许多内容页面。我想创建一个知道它在内容中的位置的组件,因此需要访问路由器对象。我尝试过 $nuxt.$route.path 但出现错误。如何导入 $nuxt$router 对象以在我的组件中访问它们?

我的模板组件

<template>
<div>
<hr>
<p>{{ $store.state.menuitems[0] }}</p>
<hr>
<div class="artfooter">
<span>i want name of current route here</span>
</div>
<br>
</div>
</template>


<style scoped>
.artfooter{
font-size: 0.8em;
display: flex;
justify-content: space-between;
}
</style>



<script>
import store from '~/store/index'
//how to import $nuxt object to access router??
console.log(store)
console.log(this.$router.path)
// the above console.log reports error
// Cannot read property 'middleware' of undefined

export default {
}
</script>

最佳答案

您可以使用this访问它:

this.$route.path

关于javascript - 如何访问 nuxt.js 中的路由器对象,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48131032/

26 4 0
文章推荐: javascript - 是否可以通过 jquery 将值传递到
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com