# 标签页自定义-进入离开问候

# 效果

# 安装

yarn add vuepress-plugin-dynamic-title -D
# or use npm
npm i vuepress-plugin-dynamic-title -D

# 使用

config.js配置文件里:

module.exports = {
   plugins: ['dynamic-title'],
}

或者

module.exports = {
   plugins: [
      [
         'dynamic-title',
         {
            showIcon: '/favicon.ico',
            showText: '(/≧▽≦/)咦!又好了!',
            hideIcon: '/failure.ico',
            hideText: '(●—●)喔哟,崩溃啦!',
            recoverTime: 2000,
         },
      ],
   ],
}