html页面写在
template
标签中
<template>
<div class="home">
</div>
</template>
数据与函数写在
script
标签中
export default {
name: 'HomeView', //组件名称
//数据模型
data() {
return {
}
},
//组件创建时调用的函数
created() {
this.loads()
},
//方法列表
methods: {
loads: function () {
//dosomething
}
}