mirror of
https://github.com/Megghy/vtsuru.live.git
synced 2025-12-07 02:46:55 +08:00
chore: format code style and update linting configuration
This commit is contained in:
@@ -1,19 +1,20 @@
|
||||
<script setup lang="ts">
|
||||
import { NSpace, NSwitch, NInputNumber, NSelect, NCollapseItem } from 'naive-ui';
|
||||
import { AutoActionItem, TriggerType } from '@/client/store/useAutoAction';
|
||||
import type { AutoActionItem } from '@/client/store/useAutoAction'
|
||||
import { NCollapseItem, NInputNumber, NSelect, NSpace, NSwitch } from 'naive-ui'
|
||||
import { TriggerType } from '@/client/store/useAutoAction'
|
||||
|
||||
const props = defineProps({
|
||||
action: {
|
||||
type: Object as () => AutoActionItem,
|
||||
required: true
|
||||
}
|
||||
});
|
||||
required: true,
|
||||
},
|
||||
})
|
||||
|
||||
// SC过滤模式选项
|
||||
const scFilterModeOptions = [
|
||||
{ label: '不过滤', value: 'none' },
|
||||
{ label: '最低价格', value: 'price' }
|
||||
];
|
||||
{ label: '最低价格', value: 'price' },
|
||||
]
|
||||
</script>
|
||||
|
||||
<template>
|
||||
@@ -74,4 +75,4 @@ const scFilterModeOptions = [
|
||||
</NSpace>
|
||||
</NSpace>
|
||||
</NCollapseItem>
|
||||
</template>
|
||||
</template>
|
||||
|
||||
Reference in New Issue
Block a user