File tree Expand file tree Collapse file tree 2 files changed +7
-8
lines changed
src/components/post/queryForm/widget Expand file tree Collapse file tree 2 files changed +7
-8
lines changed Original file line number Diff line number Diff line change 1
1
// eslint-disable-next-line import-x/extensions
2
2
import { withNuxt } from './.nuxt/eslint.config.mjs' ;
3
3
import * as vueESLintParser from 'vue-eslint-parser' ;
4
- // eslint-disable-next-line import-x/extensions
5
- import vueESLintConfigTypescriptRecommendedExtends from '@vue/eslint-config-typescript/recommended.js' ;
4
+ import vueEslintConfigTypeScript from '@vue/eslint-config-typescript' ;
6
5
import pluginVue from 'eslint-plugin-vue' ;
7
6
import { FlatCompat } from '@eslint/eslintrc' ;
8
7
import eslintJs from '@eslint/js' ;
@@ -548,7 +547,7 @@ const compat = new FlatCompat();
548
547
export default withNuxt (
549
548
eslintJs . configs . recommended ,
550
549
...pluginVue . configs [ 'flat/recommended' ] ,
551
- ...compat . config ( vueESLintConfigTypescriptRecommendedExtends ) , // https://github.com/vuejs/eslint-config-typescript/issues/76#issuecomment-2148720004
550
+ ...vueEslintConfigTypeScript ( { extends : [ 'recommended' ] } ) ,
552
551
...compat . extends ( // https://github.com/ota-meshi/typescript-eslint-parser-for-extra-files/issues/95#issuecomment-2148604881
553
552
'plugin:@typescript-eslint/strict-type-checked' ,
554
553
'plugin:@typescript-eslint/stylistic-type-checked' ,
Original file line number Diff line number Diff line change 1
1
<template >
2
2
<select v-model =" modelValue" class =" form-select form-control flex-grow-0" >
3
- <option > & lt ; </ option >
4
- < option >=</ option >
5
- < option > & gt ; </ option >
6
- < option >IN</ option >
7
- <option >BETWEEN< /option >
3
+ <option
4
+ v-for = " value in numericParamSubParamRangeValues " :key = " value "
5
+ :selected = " value === modelValue " >
6
+ {{ value }}
7
+ </option >
8
8
</select >
9
9
</template >
10
10
You can’t perform that action at this time.
0 commit comments