Blame view

pages/template/tabbar/detail/detail.vue 428 Bytes
4b045f7c   刘淇   江阴初始化项目
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
  <template>
  	<view class="root">
  		<view class="uni-padding-wrap">
  			<view class="uni-title">这是选项卡页面跳转详情页面的演示,下面是页面跳转时传递过来的标题:</view>
  			<view class="uni-title">{{title}}</view>
  		</view>
  	</view>
  </template>
  <script>
  	export default {
  		data() {
  			return {
  				title: ''
  			}
  		},
  		onLoad(e) {
  			this.title = e.title || '';
  		}
  	}
  </script>
  <style>
  </style>