vue中获取节点.

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>组件</title>
<script src="https://cdn.jsdelivr.net/npm/vue@2.5.16/dist/vue.js"></script>
</head>
<body>
<div id="root">
<table>
<tbody>
<tr is="row"></tr>
<tr is="row"></tr>
<tr is="row"></tr>
</tbody>
</table>
</div>
<script>
Vue.component('row',{
data:function() {
return {
content:'this is content'
}
},
template:'<tr><td>{{content}}</td></tr>'
});
var vm=new Vue({
el:'#root'
})
</script>,
</body>
</html>
posted @ 2018-05-15 18:26  1点  阅读(1878)  评论(0编辑  收藏  举报