美文网首页
vue全局组件注册后报错

vue全局组件注册后报错

作者: 你猜_19ca | 来源:发表于2020-03-19 15:19 被阅读0次
  • 写了一个js全局组件,包含了template内容
    Vue.components('name', {xxxxx})
    注册后引用组件报错如下:
You are using the runtime-only build of Vue where the template compiler is not available. Either pre-compile the templates into render functions, or use the compiler-included build...

vue-cli3.0解决办法:
在vue.config.js中增加如下内容,重启即可:

module.exports = {
  runtimeCompiler: true,
}

相关文章

  • vue全局组件注册后报错

    写了一个js全局组件,包含了template内容Vue.components('name', {xxxxx})注册...

  • vue组件

    关于vue组件的总结 注册组件 vue中组件的注册分为两种: 全局注册 局部注册 全局注册 全局注册的组件在任何v...

  • VUE的component和components

    component是注册全局组件,在实例化VUE前调用,注册后可以全局使用 components是局部注册组件,注...

  • Vue组件基础

    1. 组件注册 组件需要注册后才可以使用。组件有全局注册和局部注册两种方式。全局注册后,任何Vue实例都可以使用。...

  • 二次封装el-dialog组件

    MyDialog.vue 父组件中引入和使用 或者注册成全局组件 全局注册后,父组件中就不用再import了,可以...

  • vue的组件注册

    vue的组件注册: 全局注册 局部注册

  • Vue 之 组件

    组件注册 组件注册分为两种: 全局注册 和 局部注册 全局注册:全局注册的行为必须在根 Vue 实例 ...

  • 6.组件 ★

    1.组件(Component)是Vue.js最核心的功能。2.组件的注册有全局注册和局部注册两种方式。全局注册后,...

  • vue语法基础二-组件

    组件 Vue组件说明注册使用全局组件所有实例都能用全局组件。Vue.component(tagName, opti...

  • Vue 全局组件和局部组件

    vue、js、html文件都可以注册全局组件和局部组件 全局组件 局部组件 vue-custom-element ...

网友评论

      本文标题:vue全局组件注册后报错

      本文链接:https://www.haomeiwen.com/subject/fwrlyhtx.html