mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-06 03:57:59 +08:00
chore: fix switch typo (#13201)
This commit is contained in:
parent
10b72e8ec1
commit
676177c027
@ -142,7 +142,7 @@ export default defineComponent({
|
|||||||
|
|
||||||
return (
|
return (
|
||||||
<div
|
<div
|
||||||
class={bem('header-subtitle', { 'with-swicth': canSwitch })}
|
class={bem('header-subtitle', { 'with-switch': canSwitch })}
|
||||||
onClick={onClickSubtitle}
|
onClick={onClickSubtitle}
|
||||||
>
|
>
|
||||||
{canSwitch
|
{canSwitch
|
||||||
|
@ -3,7 +3,7 @@ import VanCell from '../../cell';
|
|||||||
import VanCalendar from '..';
|
import VanCalendar from '..';
|
||||||
import { reactive, ref } from 'vue';
|
import { reactive, ref } from 'vue';
|
||||||
import { useTranslate } from '../../../docs/site';
|
import { useTranslate } from '../../../docs/site';
|
||||||
import SwicthModeField from './SwicthModeField.vue';
|
import SwitchModeField from './SwitchModeField.vue';
|
||||||
import TiledDisplay from './TiledDisplay.vue';
|
import TiledDisplay from './TiledDisplay.vue';
|
||||||
import type { CalendarDayItem, CalendarSwitchMode } from '../types';
|
import type { CalendarDayItem, CalendarSwitchMode } from '../types';
|
||||||
|
|
||||||
@ -197,7 +197,7 @@ const switchMode = ref<CalendarSwitchMode>('none');
|
|||||||
</script>
|
</script>
|
||||||
|
|
||||||
<template>
|
<template>
|
||||||
<SwicthModeField v-model="switchMode" />
|
<SwitchModeField v-model="switchMode" />
|
||||||
|
|
||||||
<demo-block card :title="t('basicUsage')">
|
<demo-block card :title="t('basicUsage')">
|
||||||
<van-cell
|
<van-cell
|
||||||
|
@ -80,7 +80,7 @@
|
|||||||
&__header-subtitle {
|
&__header-subtitle {
|
||||||
font-size: var(--van-calendar-header-subtitle-font-size);
|
font-size: var(--van-calendar-header-subtitle-font-size);
|
||||||
|
|
||||||
&--with-swicth {
|
&--with-switch {
|
||||||
display: flex;
|
display: flex;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
padding: 0 var(--van-padding-base);
|
padding: 0 var(--van-padding-base);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user