-
-
Notifications
You must be signed in to change notification settings - Fork 33.7k
Closed
Labels
Description
下面这个网页用v2.0.0-beta.3/dist/vue.min.js正常,用beta.4-7都没有生成内容
<!DOCTYPE HTML>
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:mso="urn:schemas-microsoft-com:office:office" xmlns:msdt="uuid:C2F41010-65B3-11d1-A29F-00AA00C14882" >
<head>
<title>vue2 test</title>
<script src="https://raw.githubusercontent.com/vuejs/vue/v2.0.0-beta.7/dist/vue.min.js"></script>
<style>
.a {color: green}
.b {color: red}
</style>
</head>
<body>
<div id='test1'>
<h1 id='content1' :class='active =="x1" ? "a" :"b"'>ttt2345</h1>
</div>
</body>
<script>
vue1 = new Vue({
el: '#test1',
data: {
active: "x1",
},
})
</script>
</html>