模板语法
uni-app 完整支持 Vue 模板语法。
详见 Vue官方文档(传送门)
基础数据绑定
<template>
<view class="news">
<view class="title">{
{
title}}</view> //在视图中使用 {
{}} 调用变量:
<view>{
{
msg}}</view>
</view>
</template>
<script>
export default {
data() {
return {
//变量赋值
title: 'uni-app',
msg: 'hello'
};
}
}
</script>
数组形式的数据绑定
<template>
<view class="news">
<view class="">
{
{
students[0].age}} //调用
{
{
students[1].name}}
{
{
students[0]['name']}}
</view>
</view>
</template>
<script>
export default