uni-app因为是基于vue开发的框架,所以页面文件都是以.vue结尾
每个 vue文件结构分为三块:
<template></template> 此处写页面内容,相当于html中的body
<script></script>此处写脚本方法和uni-app中的data(数据)
<style></style>此处也就是页面样式
uni-app因为是基于vue开发的框架,所以页面文件都是以.vue结尾
每个 vue文件结构分为三块:
<template></template> 此处写页面内容,相当于html中的body
<script></script>此处写脚本方法和uni-app中的data(数据)
<style></style>此处也就是页面样式