先说一下对官网上demo的个人理解:
<div class="jb51code">
<pre class="brush:xhtml;">
<!DOCTYPE html>
<script type="text/javascript">
Vue.component('child',{
template: '#anchored-heading-template',props: {
level: {
type: Number,required: true
}
}
});
new Vue({
el: "#app"
})