跳至主要內容

SEO优化

yyshino小于 1 分钟FrontEnd浏览器

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
    }
  },
  // ... 
 ]