mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-06 03:57:59 +08:00
18 lines
604 B
Plaintext
18 lines
604 B
Plaintext
// Jest Snapshot v1, https://goo.gl/fbAQLP
|
|
|
|
exports[`disable stepper input 1`] = `
|
|
<div class="van-stepper">
|
|
<button class="van-stepper__minus van-stepper__minus--disabled"></button>
|
|
<input type="number" disabled="disabled" class="van-stepper__input">
|
|
<button class="van-stepper__plus"></button>
|
|
</div>
|
|
`;
|
|
|
|
exports[`disabled stepper 1`] = `
|
|
<div class="van-stepper">
|
|
<button class="van-stepper__minus van-stepper__minus--disabled"></button>
|
|
<input type="number" disabled="disabled" class="van-stepper__input">
|
|
<button class="van-stepper__plus van-stepper__plus--disabled"></button>
|
|
</div>
|
|
`;
|