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.
computed properties
1 parent 330955e commit d7396a5Copy full SHA for d7396a5
src/lexers/vue-template-lexer.js
@@ -35,7 +35,7 @@ export default class VueTemplateLexer extends HTMLLexer {
35
(item) => item.name.startsWith(':') || item.name.startsWith('v-bind:')
36
)
37
if (attributes.length > 0) {
38
- // there are calculation attributes.
+ // there are computed properties, it may have simple javascript logic
39
attributes.forEach((content) => {
40
const items = jsLexer.extract(content.value, filename)
41
keys.push(...items)
0 commit comments