blob: 70e4f405e738efca2e79038e99ecdacf986f879d (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
|
; inherits: html_tags
[
"["
"]"
] @punctuation.bracket
[
":"
"."
] @character.special
[
(interpolation)
"@"
] @punctuation.special
(interpolation
(raw_text) @none)
(dynamic_directive_inner_value) @variable
(directive_name) @tag.attribute
; Accessing a component object's field
(":"
.
(directive_value) @variable.member)
("."
.
(directive_value) @property)
; @click is like onclick for HTML
("@"
.
(directive_value) @function.method)
; Used in v-slot, declaring position the element should be put in
("#"
.
(directive_value) @variable)
(directive_attribute
(quoted_attribute_value) @punctuation.special)
(directive_attribute
(quoted_attribute_value
(attribute_value) @none))
(directive_modifier) @function.method
((template_element) @_template
(#set! @_template bo.commentstring "<!-- %s -->"))
|