Skip to content

Commit

Permalink
revert: lint on KAction
Browse files Browse the repository at this point in the history
  • Loading branch information
cnouguier committed Jun 6, 2024
1 parent 42db1db commit e104d39
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions core/client/components/action/KAction.vue
Original file line number Diff line number Diff line change
Expand Up @@ -147,8 +147,11 @@
</template>

<script>
// use normal <script> to declare options
// TODO: need to updated when switch to vue > 3.3
// WARNING for now we must declare the inheritAttrs this way. Lint will try to move it. Don't do it.
// TODO: need to updated when switch to vue > 3.3 to be able to declare options
export default {
inheritAttrs: false
}
</script>

<script setup>
Expand All @@ -159,9 +162,6 @@ import { useQuasar, openURL } from 'quasar'
import { i18n } from '../../i18n.js'
import { actionProps } from '../../utils/utils.actions'
import { bindParams } from '../../utils/utils.content.js'
export default {
inheritAttrs: false
}
// Data
const route = useRoute()
Expand Down

0 comments on commit e104d39

Please sign in to comment.