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 dfcd16e commit b65aaf6Copy full SHA for b65aaf6
samples/basic.vue
@@ -12,7 +12,8 @@ Things to verify:
12
<span
13
v-text="foo * 10 + 'hi'"
14
:id="foo + 'baz'"
15
- @click="onClick('hello')">
+ @click="onClick('hello')"
16
+ @click.prevent="onClick('hello')">
17
Hello
18
</span>
19
</div>
samples/langs.vue
@@ -14,6 +14,20 @@ body
color primary-color
</style>
+<style lang="scss">
+@import '~foo';
+
20
+a {
21
+ color: red;
22
+}
23
+</style>
24
25
+<style lang="sass">
26
+@import '~foo'
27
+a
28
+ color: red
29
30
31
<template lang="pug">
32
div.app
33
h1.title This is the app
0 commit comments