也不知道是做什么用的。
网上说是:基础数据绑定
<script>
export default {
data: {
title: 'Hello',
name : 'hcoder'
}, .....
<template>
<view class="content">
<text class="title">{{title}}</text>
<view>
hi....{{name}}
</view>
</view>
</template>
参考来源:http://www.hcoder.net/tutorials/info/id/1342