(code: string, vfor: string)
| 32 | const KEY_RE = /:?key="[^"]"/g |
| 33 | |
| 34 | function wrapWithVForDiv (code: string, vfor: string): string { |
| 35 | return `<div v-for="${vfor}" style="display: contents;">${code}</div>` |
| 36 | } |
| 37 | |
| 38 | export const IslandsTransformPlugin = (options: ServerOnlyComponentTransformPluginOptions) => createUnplugin((_options, meta) => { |
| 39 | const isVite = meta.framework === 'vite' |
no outgoing calls
no test coverage detected
searching dependent graphs…