mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-06 03:57:59 +08:00
docs: should hide some demes in vant-weapp
This commit is contained in:
parent
11faabd408
commit
630155833f
@ -13,6 +13,9 @@ Locale.add({
|
||||
'en-US': enUS
|
||||
});
|
||||
|
||||
// flag for vant-weapp demos
|
||||
const isWeapp = location.search.indexOf('weapp=1') !== -1;
|
||||
|
||||
// helper for demo locales
|
||||
Vue.mixin({
|
||||
computed: {
|
||||
@ -26,6 +29,10 @@ Vue.mixin({
|
||||
const message = get(messages, prefix + path) || get(messages, path);
|
||||
return typeof message === 'function' ? message(...args) : message;
|
||||
};
|
||||
},
|
||||
|
||||
isWeapp() {
|
||||
return isWeapp;
|
||||
}
|
||||
},
|
||||
|
||||
@ -45,6 +52,7 @@ Vue.mixin({
|
||||
}
|
||||
});
|
||||
|
||||
// switch lang after routing
|
||||
if (window.vueRouter) {
|
||||
window.vueRouter.afterEach(to => {
|
||||
const { lang } = to.meta || {};
|
||||
|
@ -16,7 +16,7 @@
|
||||
<van-cell :title="$t('cell')" :value="$t('content')" icon="location-o" />
|
||||
</demo-block>
|
||||
|
||||
<demo-block v-if="!$attrs.weapp" :title="$t('valueOnly')">
|
||||
<demo-block v-if="!isWeapp" :title="$t('valueOnly')">
|
||||
<van-cell :value="$t('content')" />
|
||||
</demo-block>
|
||||
|
||||
|
@ -62,7 +62,7 @@
|
||||
</van-checkbox-group>
|
||||
</demo-block>
|
||||
|
||||
<demo-block v-if="!$attrs.weapp" :title="$t('toggleAll')">
|
||||
<demo-block v-if="!isWeapp" :title="$t('toggleAll')">
|
||||
<van-checkbox-group v-model="checkAllResult" ref="group">
|
||||
<van-checkbox name="a">{{ $t('checkbox') }} a</van-checkbox>
|
||||
<van-checkbox name="b">{{ $t('checkbox') }} b</van-checkbox>
|
||||
|
@ -36,7 +36,7 @@
|
||||
</demo-block>
|
||||
|
||||
<demo-block
|
||||
v-if="!$attrs.weapp"
|
||||
v-if="!isWeapp"
|
||||
:title="$t('title3')"
|
||||
>
|
||||
<van-row type="flex">
|
||||
|
@ -87,7 +87,7 @@
|
||||
</van-cell-group>
|
||||
</demo-block>
|
||||
|
||||
<demo-block v-if="!$attrs.weapp" :title="$t('showWordLimit')">
|
||||
<demo-block v-if="!isWeapp" :title="$t('showWordLimit')">
|
||||
<van-cell-group>
|
||||
<van-field
|
||||
v-model="message2"
|
||||
|
@ -44,7 +44,7 @@
|
||||
<van-popup v-model="showRoundCorner" round position="bottom" :style="{ height: '20%' }" />
|
||||
</demo-block>
|
||||
|
||||
<demo-block v-if="!$attrs.weapp" :title="$t('getContainer')">
|
||||
<demo-block v-if="!isWeapp" :title="$t('getContainer')">
|
||||
<van-cell :title="$t('getContainer')" is-link @click="showGetContainer = true" />
|
||||
<van-popup v-model="showGetContainer" get-container="body" :style="{ padding: '30px 50px' }" />
|
||||
</demo-block>
|
||||
|
@ -4,7 +4,7 @@
|
||||
<van-progress :percentage="50" />
|
||||
</demo-block>
|
||||
|
||||
<demo-block v-if="!$attrs.weapp" :title="$t('strokeWidth')">
|
||||
<demo-block v-if="!isWeapp" :title="$t('strokeWidth')">
|
||||
<van-progress :percentage="50" stroke-width="8" />
|
||||
</demo-block>
|
||||
|
||||
|
@ -51,7 +51,7 @@
|
||||
</van-slider>
|
||||
</demo-block>
|
||||
|
||||
<demo-block v-if="!$attrs.weapp" :title="$t('vertical')">
|
||||
<demo-block v-if="!isWeapp" :title="$t('vertical')">
|
||||
<div :style="{ height: '120px', paddingLeft: '30px' }">
|
||||
<van-slider
|
||||
v-model="value7"
|
||||
|
@ -12,7 +12,7 @@
|
||||
</van-sticky>
|
||||
</demo-block>
|
||||
|
||||
<demo-block v-if="!$attrs.weapp" :title="$t('setContainer')">
|
||||
<demo-block v-if="!isWeapp" :title="$t('setContainer')">
|
||||
<div ref="container" style="height: 150px; background-color: #fff;">
|
||||
<van-sticky :container="container">
|
||||
<van-button type="warning" style="margin-left: 215px;">{{ $t('setContainer') }}</van-button>
|
||||
|
@ -67,7 +67,7 @@
|
||||
</van-tabs>
|
||||
</demo-block>
|
||||
|
||||
<demo-block v-if="!$attrs.weapp" :title="$t('title7')">
|
||||
<demo-block v-if="!isWeapp" :title="$t('title7')">
|
||||
<van-tabs :active="active">
|
||||
<van-tab v-for="index in 2" :key="index">
|
||||
<template #title>
|
||||
@ -94,7 +94,7 @@
|
||||
</van-tabs>
|
||||
</demo-block>
|
||||
|
||||
<demo-block v-if="!$attrs.weapp" :title="$t('title10')">
|
||||
<demo-block v-if="!isWeapp" :title="$t('title10')">
|
||||
<van-tabs scrollspy sticky>
|
||||
<van-tab :title="$t('tab') + index" v-for="index in 10" :key="index">
|
||||
{{ $t('content') }} {{ index }}
|
||||
|
@ -15,7 +15,7 @@
|
||||
<van-button type="danger" :text="$t('fail')" @click="showFailToast" />
|
||||
</demo-block>
|
||||
|
||||
<demo-block v-if="!$attrs.weapp" :title="$t('customIcon')">
|
||||
<demo-block v-if="!isWeapp" :title="$t('customIcon')">
|
||||
<van-button type="primary" :text="$t('customIcon')" @click="showIconToast" />
|
||||
<van-button type="primary" :text="$t('customImage')" @click="showImageToast" />
|
||||
</demo-block>
|
||||
|
Loading…
x
Reference in New Issue
Block a user