В настоящее время свойство mode
маршрутизатора vue в vuepress - это 'history'
Я хочу изменить свойство mode
маршрутизатора vue в vuepress на hash
Есть ли способ достичь этого?
Я пытался создать файл enhanceApp.js
, как показано ниже, в каталоге .vuepress
(https://vuepress.vuejs.org/guide/basic-config.html#app -level-Enhancements )
export default ({
Vue, // the version of Vue being used in the VuePress app
options, // the options for the root Vue instance
router, // the router instance for the app
siteData, // site metadata
isServer // is this enhancement applied in server-rendering or client
}) => {
router.mode = 'hash';
}
Но нет везения