mirror of
https://gitee.com/vant-contrib/vant-weapp.git
synced 2025-06-21 20:09:15 +08:00
21 lines
456 B
Plaintext
21 lines
456 B
Plaintext
<navigator wx:if="{{ url }}" url="{{ url }}" open-type="{{ replace ? 'redirect' : 'navigate' }}">
|
|
<template is="big-btn" data="{{ primary, text }}"></template>
|
|
</navigator>
|
|
|
|
<block wx:else>
|
|
<template is="big-btn" data="{{ primary, text }}"></template>
|
|
</block>
|
|
|
|
<template name="big-btn">
|
|
<van-button
|
|
type="{{ primary ? 'danger' : 'warning' }}"
|
|
square
|
|
size="large"
|
|
bind:click="onClick"
|
|
>
|
|
{{ text }}
|
|
</van-button>
|
|
</template>
|
|
|
|
|