Vue中inheritAttrs的使用
<body>
<div id="wxApp" class="appclass">
<blog-post title="标题" wx-attr1="未定义属性" wx-attr2="未定义属性"
style="color:red" class="wxclass"></blog-post>
</div>
<script>
Vue.component('blog-post',{
inheritAttrs:true,
props:{
title:String,
},
template:`
<div wx-attr1="hello" class="div1" style="width:500px" v-bind="$attrs" >
<h1>title:{
<body>
<div id="wxApp" c