标签:image meta doc 字符串 load http bool pre 其他
<!DOCTYPE html>
<html>
<head>
<meta charset=‘utf-8‘>
<title></title>
<script src=‘../node_modules/vue/dist/vue.min.js‘></script>
</head>
<body>
<div id=‘app‘>
<input type="checkbox" v-model="bool1"/>
<input type="checkbox" v-model="bool2"/>
<input type="checkbox" v-model="msg1"/>
<input type="checkbox" v-model="msg2"/>
</div>
<script>
new Vue({
el: ‘#app‘,
data: {
bool1:true,
bool2:false,
msg1:[1,2,3,4],
msg2:"1234"
}
})
</script>
</body>
</html>
标签:image meta doc 字符串 load http bool pre 其他
原文地址:https://www.cnblogs.com/Listener-wy/p/14945410.html