SEO优化
小于 1 分钟
SEO优化
meta元信息处理
html头部中
<title></title>
<meta name="keywords" content="" />
<meta name="description" content="" />
Vue-Router中
const routes = [
// ...
{
path: '/',
name: 'home',
component: home,
meta: {
title: '标题',
keywords: '关键词(空格隔开)',
description: '网页描述',
keepAlive: false
}
},
// ...
]