();
- const dragStatus = ref<'start' | 'draging' | ''>();
+ const dragStatus = ref<'start' | 'dragging' | ''>();
const touch = useTouch();
const scope = computed(() => Number(props.max) - Number(props.min));
@@ -197,7 +197,7 @@ export default defineComponent({
preventDefault(event, true);
touch.move(event);
- dragStatus.value = 'draging';
+ dragStatus.value = 'dragging';
const rect = useRect(root);
const delta = props.vertical ? touch.deltaY.value : touch.deltaX.value;
@@ -218,7 +218,7 @@ export default defineComponent({
return;
}
- if (dragStatus.value === 'draging') {
+ if (dragStatus.value === 'dragging') {
updateValue(currentValue, true);
emit('drag-end', event);
}
diff --git a/src/stepper/test/index.spec.ts b/src/stepper/test/index.spec.ts
index 10aed02ab..592b665d0 100644
--- a/src/stepper/test/index.spec.ts
+++ b/src/stepper/test/index.spec.ts
@@ -325,7 +325,7 @@ test('should hide input when show-input prop is false', () => {
expect(wrapper.find('input').isVisible()).toBeFalsy();
});
-test('should limit dicimal length when using decimal-length prop', async () => {
+test('should limit decimal length when using decimal-length prop', async () => {
const wrapper = mount(Stepper, {
props: {
step: 0.2,
@@ -339,7 +339,7 @@ test('should limit dicimal length when using decimal-length prop', async () => {
expect(wrapper.emitted('update:modelValue')![1]).toEqual(['1.20']);
});
-test('should limit decimal-length when inputing', async () => {
+test('should limit decimal-length when inputting', async () => {
const wrapper = mount(Stepper, {
props: {
step: 0.2,
diff --git a/src/swipe-cell/test/index.spec.js b/src/swipe-cell/test/index.spec.js
index dc11d4de1..034dec6aa 100644
--- a/src/swipe-cell/test/index.spec.js
+++ b/src/swipe-cell/test/index.spec.js
@@ -110,7 +110,7 @@ test('should emit close event with name when using name prop', () => {
expect(wrapper.emitted('close')[0]).toEqual([{ name: 'test' }]);
});
-test('should reset transform after short draging', async () => {
+test('should reset transform after short dragging', async () => {
const wrapper = mount(SwipeCell, defaultProps);
triggerDrag(wrapper, 5, 0);
diff --git a/src/tab/test/index.legacy.js b/src/tab/test/index.legacy.js
index a9a995fff..09aada00d 100644
--- a/src/tab/test/index.legacy.js
+++ b/src/tab/test/index.legacy.js
@@ -61,7 +61,7 @@ test('swipe to switch tab', async () => {
const onChange = jest.fn();
const wrapper = mount({
template: `
-
+
Text
Text
Text
@@ -153,7 +153,7 @@ test('name prop', async () => {
const wrapper = mount({
template: `
-
+
Text
Text
Text
@@ -301,7 +301,7 @@ test('rendered event', async () => {
const wrapper = mount({
template: `
-
+
Text
Title2
diff --git a/src/tabbar/README.md b/src/tabbar/README.md
index 4b362a644..b3fd16018 100644
--- a/src/tabbar/README.md
+++ b/src/tabbar/README.md
@@ -171,7 +171,7 @@ export default {
| active-color | Color of active tab item | _string_ | `#1989fa` |
| inactive-color | Color of inactive tab item | _string_ | `#7d7e80` |
| route | Whether to enable route mode | _boolean_ | `false` |
-| placeholder | Whether to generage a placeholder element when fixed | _boolean_ | `false` |
+| placeholder | Whether to generate a placeholder element when fixed | _boolean_ | `false` |
| safe-area-inset-bottom | Whether to enable bottom safe area adaptation | _boolean_ | `false` |
| before-change | Callback function before changing tabs,return `false` to prevent change,support return Promise | _(name) => boolean \| Promise_ | - |
diff --git a/src/toast/README.md b/src/toast/README.md
index 2da2a9ca1..0721f602b 100644
--- a/src/toast/README.md
+++ b/src/toast/README.md
@@ -147,7 +147,7 @@ Toast.resetDefaultOptions('loading');
| Toast.success | `options \| message` | toast instance | Show success toast |
| Toast.fail | `options \| message` | toast instance | Show fail toast |
| Toast.clear | `clearAll: boolean` | `void` | Close toast |
-| Toast.allowMultiple | - | `void` | Allow multlple toast at the same time |
+| Toast.allowMultiple | - | `void` | Allow multiple toast at the same time |
| Toast.setDefaultOptions | `type \| options` | `void` | Set default options of all toasts |
| Toast.resetDefaultOptions | `type` | `void` | Reset default options of all toasts |