2021-02-05 17:26:08 +08:00

23 lines
449 B
Vue
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<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>