|
<!-- eslint-disable vue/no-use-v-if-with-v-for,vue/no-confusing-v-for-v-if -->
|
cs |
를 사용하면 됩니다.
vue.config.js 에서
eslintrc 에서 rule을 적용하는 방법은
|
module.exports = {
lintOnSave : false,
rules: {
// allow debugger during development
'no-debugger': process.env.NODE_ENV === 'production' ? 'error' : 'off',
"vue/no-use-v-if-with-v-for": "off"
}
}
|
cs |