chore(nc-gui): lint

This commit is contained in:
Ramesh Mane
2025-01-28 13:18:32 +00:00
parent 3bb8af16ff
commit 7de2e99321
10 changed files with 1360 additions and 10 deletions

View File

@@ -1,5 +1,5 @@
<script lang="ts" setup>
import { getOptions, getSelectedTitles, type LocalSelectOptionType } from './utils'
import { type LocalSelectOptionType, getOptions, getSelectedTitles } from './utils'
interface Props {
modelValue?: string | string[]
@@ -10,8 +10,6 @@ interface Props {
const { modelValue, options: selectOptions } = defineProps<Props>()
const emit = defineEmits(['update:modelValue'])
const column = inject(ColumnInj)!
const readOnly = inject(ReadonlyInj)!