docs: add weapp tip (#4499)

This commit is contained in:
neverland 2019-09-19 10:26:43 +08:00 committed by GitHub
parent c32e29791e
commit a4b5f94232
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -8,6 +8,15 @@
:left-arrow="showNav"
@click-left="onBack"
/>
<van-notice-bar
v-if="weapp"
v-show="title"
wrapable
:text="tips"
background="#ecf9ff"
color="rgba(52, 73, 94, 0.8)"
style="font-size: 12px;"
/>
<keep-alive>
<router-view :weapp="weapp" />
</keep-alive>
@ -42,6 +51,10 @@ export default {
}
},
beforeCreate() {
this.tips = 'Tips: 当前预览的是 Vue 版 Vant 的示例,少部分功能可能与小程序版有出入,请以文档描述和实际效果为准。';
},
methods: {
onBack() {
history.back();