<template>
<div class="hello">
<h3>学习Vue:模板语法</h3>
//动态改变标签的类型名称此时就是10001
<div v-bind: id="dynamicId"></div>
//简写v-bind可以简写成冒号
<div :id="dynamicId"></div>
</div>
</template>
<scripyt>
export default{
name: 'helloworld',
data(){
return{
dynamicId:10001
}
}
}
</scripyt>