app.vue基本模板

<!-- 模板 html-->
<template>
<div id="app">
{{title}}
</div>
</template>


<!-- 行为 -->
<script>
export default {
name:'app',
// 写属性
data(){
return{
title:'hello111'
}
}
}
</script>

 

<!-- 样式 -->
<style>

</style>

posted @ 2020-06-08 10:31  Smile*^  阅读(697)  评论(0)    收藏  举报