Meteor + Vue仅限运行时构建

时间:2017-12-08 17:08:44

标签: javascript meteor vue.js serverside-rendering

在服务器端渲染中使用Meteor + Vue integration时,我在客户端和服务器上都收到以下警告:

您正在使用Vue的仅运行时版本,其中模板编译器不可用。

[Vue warn]: 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.

这是什么意思,我该如何解决?包裹做错了吗?一般来说,我正在关注this example project

1 个答案:

答案 0 :(得分:1)

这是因为只是尝试渲染一个空的Vue模板。 Vue错误地将此解释为模板编译器无法正常工作。在home .vue文件中添加一些简单的代码可以修复它:

<template>
  <p>foo</p>
</template>