为什么这个 Vuejs "Hello World" 示例无法在我的计算机上呈现?

Why Won't This Vuejs "Hello World" Example Render On My Computer?

我正在尝试将 Vue 与 Phoenix/Elixir 项目一起使用。经过大量故障排除后,我仍然无法渲染 Vuejs 元素。所以我决定在原始 html/js.

中测试简单的 "hello world" 示例

也不行。我做错了什么?

这是我试图在我的计算机上复制的 jsfiddle: https://jsfiddle.net/yyx990803/okv0rgrk/

代码如下:

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>Vue Test</title>

<script src="https://cdn.jsdelivr.net/vue/latest/vue.js"></script>

<script>
new Vue({
  el: '#app',
  data: {
    message: 'Hello Vue.js!'
  }
})
</script>

</head>
<body>

<div id="app">
    {{ message }}
</div>

</body>
</html>

将您的第二个 script 标签放在 </body> 之前。您的代码不起作用的原因是因为您试图在 #app 存在之前安装它。如果你尝试在它在那里之后安装它,那就没问题了。

这是一个最小的例子:

<!DOCTYPE html>
<html>
  <head>
    <script src="http://cdn.jsdelivr.net/vue/2.0.3/vue.js"></script>
  </head>
  <body>
    <div id="app">
      <p>{{ message }}</p>
    </div>
    <!-- Must put the script below after the app div -->
    <script type="text/javascript">
      new Vue({
        el: '#app',
        data: {
          message: 'Hello Vue.js!'
        }
      })
    </script>
  </body>
</html>