We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Describe the bug /vue-codemod/dist/vue-transformations/v-for-template-key does not support key with string interpolation.
/vue-codemod/dist/vue-transformations/v-for-template-key
To Reproduce
import { applyOperation } from '@originjs/vue-codemod/dist/src/wrapVueTransformation' import { transformAST } from '@originjs/vue-codemod/dist/vue-transformations/v-for-template-key' const test = `<template v-for="(disclaimer, index) in block.disclaimers"> <Disclaimer v-if="disclaimerValue(disclaimer)" :key="`disclaimer_${index}`" class="lv-shipping-summary__disclaimer" > <p v-safe-html="disclaimerValue(disclaimer)" /> </Disclaimer> </template>` const result = applyOperation(test,[transformAST]) console.log(result)
result is something like:
result
<template v-for="(disclaimer, index) in block.disclaimers" :key="undefined"> <Disclaimer v-if="disclaimerValue(disclaimer)" class="lv-shipping-summary__disclaimer"> <p v-safe-html="disclaimerValue(disclaimer)" /> </Disclaimer> </template>
Expected behavior
<template v-for="(disclaimer, index) in block.disclaimers" :key="`disclaimer_${index}`"> <Disclaimer v-if="disclaimerValue(disclaimer)" class="lv-shipping-summary__disclaimer"> <p v-safe-html="disclaimerValue(disclaimer)" /> </Disclaimer> </template>
Environment (please complete the following information):
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Describe the bug
/vue-codemod/dist/vue-transformations/v-for-template-key
does not support key with string interpolation.To Reproduce
result
is something like:Expected behavior
Environment (please complete the following information):
The text was updated successfully, but these errors were encountered: