Skip to content

配置Head

组件局部:

javascript
<script type="text/javascript">
        export default{
            head(){
                return {
                    title: '关于我们_小鹿线',
                    meta: [
                      { hid: 'description', name: 'description', content: '此处是网站描述' },
                      { hid: 'keywords', name: 'keywords', content: '此处是网站关键词' }
                    ]
                }
            }
        }
</script>