-
-
Notifications
You must be signed in to change notification settings - Fork 594
Open
Description
Is it possible to add syntax highlighting support to template literals when not using .vue files.
{
template: `
<div :class="['loading', {'loading-dark': dark, 'loading-small': small}]">
<i class="fa fa-spinner fa-pulse"></i>
</div>
`,
props: {
dark: {
type: Boolean,
default: false
},
small: {
type: Boolean,
default: false
}
}
};
vharadkou, johnsusek, pascalgermain, faisalhakim47, string-areeb and 11 more