sitemap vue
时间: 2023-11-13 18:02:13 浏览: 144
您可以使用 vue-sitemap 插件来生成网站地图。首先,您需要安装该插件:
```
npm install vue-sitemap --save
```
然后,在您的 Vue 项目中,您可以像这样使用它:
```vue
<template>
<div>
<h1>My Website</h1>
<ul>
<li><router-link to="/">Home</router-link></li>
<li><router-link to="/about">About</router-link></li>
<li><router-link to="/contact">Contact</router-link></li>
</ul>
<sitemap :routes="routes" />
</div>
</template>
<script>
import Sitemap from 'vue-sitemap'
export default {
components: {
Sitemap
},
data () {
return {
routes: [
{ path: '/', changefreq: 'daily', priority: 1 },
{ path: '/about', changefreq: 'monthly', priority: 0.7 },
{ path: '/contact', changefreq: 'yearly', priority: 0.5 }
]
}
}
}
</script>
```
在这个例子中,我们定义了三个路由,并将它们传递给 `sitemap` 组件。您可以根据需要添加更多的路由。
阅读全文