【发布时间】:2020-10-07 13:23:58
【问题描述】:
quand j'execute index.html j obtient {{name}} toujours vuejs est nondetecté
<html>
<head>
<meta charset="UTF-8" />
<title>learn vuejs</title>
<link rel="shortcut icon" href="#" />
</head>
<body>
<div id="j">{{ name }}</div>
<script src="js/vue.min.js"></script>
<script >
new Vue({
ele: "#j",
data: {
name: "welcome to vue",
},
});</script>
</body>
【问题讨论】:
-
另外请在 Stackoverflow 上坚持英文
标签: javascript html vue.js