We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f4906ff commit 91936b0Copy full SHA for 91936b0
src/runtime/validator.ts
@@ -29,7 +29,7 @@ export const useChecker = (
29
}
30
31
// Clean up Vue scoped style attributes
32
- html = typeof html === 'string' ? html.replace(/ ?data-v-[-A-Za-z0-9]+(=["'][^"']+["'])?/g, '') : html
+ html = typeof html === 'string' ? html.replace(/ ?data-v-[-A-Za-z0-9]+(=["'][^"']*["'])?/g, '') : html
33
const { valid, results } = await validator.validateString(html)
34
35
if (valid && !results.length) {
0 commit comments