Skip to content

Commit b77753c

Browse files
renovate[bot]renovate-botsxzz
authored
fix(deps): update dependency eslint-plugin-vue to v9 (element-plus#7848)
Co-authored-by: Renovate Bot <bot@renovateapp.com> Co-authored-by: 三咲智子 <sxzz@sxzz.moe>
1 parent 8ef2bf7 commit b77753c

File tree

16 files changed

+34
-40
lines changed

16 files changed

+34
-40
lines changed

docs/.eslintrc.json

Lines changed: 0 additions & 3 deletions
This file was deleted.

docs/examples/dialog/customization-header.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,8 @@
1818

1919
<script lang="ts" setup>
2020
import { ref } from 'vue'
21+
import { ElButton, ElDialog } from 'element-plus'
2122
import { CircleCloseFilled } from '@element-plus/icons-vue'
22-
import type { ElButton, ElDialog } from 'element-plus'
2323
2424
const visible = ref(false)
2525
</script>

docs/examples/dialog/focus-trapping.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131

3232
<script lang="ts" setup>
3333
import { ref } from 'vue'
34-
import type { ElInput } from 'element-plus'
34+
import { ElInput } from 'element-plus'
3535
3636
const dialogVisible = ref(false)
3737
const inputRef = ref<InstanceType<typeof ElInput>>()

docs/examples/drawer/customization-content.vue

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -53,8 +53,7 @@
5353

5454
<script lang="ts" setup>
5555
import { reactive, ref } from 'vue'
56-
import { ElMessageBox } from 'element-plus'
57-
import type { ElDrawer } from 'element-plus'
56+
import { ElDrawer, ElMessageBox } from 'element-plus'
5857
5958
const formLabelWidth = '80px'
6059
let timer

docs/examples/drawer/customization-header.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@
1616

1717
<script lang="ts" setup>
1818
import { ref } from 'vue'
19+
import { ElButton, ElDrawer } from 'element-plus'
1920
import { CircleCloseFilled } from '@element-plus/icons-vue'
20-
import type { ElButton, ElDrawer } from 'element-plus'
2121
2222
const visible = ref(false)
2323
</script>

docs/examples/scrollbar/manual-scroll.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717

1818
<script lang="ts" setup>
1919
import { onMounted, ref } from 'vue'
20-
import type { ElScrollbar } from 'element-plus'
20+
import { ElScrollbar } from 'element-plus'
2121
2222
const max = ref(0)
2323
const value = ref(0)

docs/examples/table/filter.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,8 +43,8 @@
4343

4444
<script lang="ts" setup>
4545
import { ref } from 'vue'
46+
import { ElTable } from 'element-plus'
4647
import type { TableColumnCtx } from 'element-plus/es/components/table/src/table-column/defaults'
47-
import type { ElTable } from 'element-plus'
4848
4949
interface User {
5050
date: string

docs/examples/table/multi-select.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222

2323
<script lang="ts" setup>
2424
import { ref } from 'vue'
25-
import type { ElTable } from 'element-plus'
25+
import { ElTable } from 'element-plus'
2626
2727
interface User {
2828
date: string

docs/examples/table/single-select.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919

2020
<script lang="ts" setup>
2121
import { ref } from 'vue'
22-
import type { ElTable } from 'element-plus'
22+
import { ElTable } from 'element-plus'
2323
2424
interface User {
2525
date: string

docs/examples/tag/editable.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525

2626
<script lang="ts" setup>
2727
import { nextTick, ref } from 'vue'
28-
import type { ElInput } from 'element-plus'
28+
import { ElInput } from 'element-plus'
2929
3030
const inputValue = ref('')
3131
const dynamicTags = ref(['Tag 1', 'Tag 2', 'Tag 3'])

0 commit comments

Comments
 (0)