vue的script和template用法一样
我是刘洋//Vue.component('child' ,child1)Vue.component('my-div',{template:'#my_div'})new Vue({el:'#app'})
·
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title></title>
<script type="text/javascript" src="vue1.0.25.js" ></script>
</head>
<body>
<div id="app">
<my-div></my-div>
</div>
<script type="text/template"id="my_div" >
<div>
<div>我是刘洋</div>
<input type="date" name="" id="" value="" /><br>
<img src="04表单提交/img/inputBg.png" alt="" />
</div>
</script>
<script type="text/javascript">
// Vue.component('child' ,child1)
Vue.component('my-div',{template:'#my_div'})
new Vue({
el:'#app'
})
</script>
</body>
</html>
更多推荐
已为社区贡献2条内容
所有评论(0)