标签:default ret nbsp name bsp turn title return app
<!-- 模板 html-->
<template>
<div id="app">
{{title}}
</div>
</template>
<!-- 行为 -->
<script>
export default {
name:‘app‘,
// 写属性
data(){
return{
title:‘hello111‘
}
}
}
</script>
<!-- 样式 -->
<style>
</style>
标签:default ret nbsp name bsp turn title return app
原文地址:https://www.cnblogs.com/weixin2623670713/p/13064175.html