如何用Nuxt.js扩展根应用?

问题描述 投票:0回答:2

如何用Nuxtjs扩展根应用程序,如图所示。视频 ,现在不能用了,有没有什么办法可以自定义Nuxt.js App Layout。先谢谢你的解决方法。

vue.js nuxt.js
2个回答
0
投票

是的,终于得到了它,使用插件和mixins。

export default function({ app }) {
  if (!app.mixins) {
    app.mixins = []
  }
  app.mixins.push({
    mounted() {
    //..  do here
    }
  })
}
© www.soinside.com 2019 - 2024. All rights reserved.