db-tutorial/docs/.vuepress/enhanceApp.js

10 lines
346 B
JavaScript
Raw Normal View History

2022-06-09 15:16:02 +08:00
// import vue from 'vue/dist/vue.esm.browser'
2022-04-11 16:52:35 +08:00
export default ({
Vue, // VuePress 正在使用的 Vue 构造函数
options, // 附加到根实例的一些选项
router, // 当前应用的路由实例
2022-06-09 15:16:02 +08:00
siteData // 站点元数据
2022-04-11 16:52:35 +08:00
}) => {
2022-06-09 15:16:02 +08:00
// window.Vue = vue // 使页面中可以使用Vue构造函数 使页面中的vue demo生效
2022-04-21 09:45:12 +08:00
}