0安装 hbuilder x 标准版
1.创建模版工程
2.创建官方 案例工程
index.uvuewen 文件解析
            
            
              css
              
              
            
          
          <!-- 模版 标签 -->
<template>
	<view>
		
		
	</view>
	
</template>
<!-- 脚本 -->
<script>
	export default {
		data() {
			return {
				 
			}
		},
		onLoad() {
		},
		methods: {
		}
	}
</script>
<!-- 样式属性尺寸 -->
<style>
	.logo {
		height: 100px;
		width: 100px;
		margin: 100px auto 25px auto;
	}
	.title {
		font-size: 18px;
		color: #8f8f94;
    text-align: center;
	}
</style  
        运行效果


