summaryrefslogtreecommitdiff
path: root/test/fixtures/astro-styles-ssr/src/components/VueScoped.vue
diff options
context:
space:
mode:
Diffstat (limited to 'test/fixtures/astro-styles-ssr/src/components/VueScoped.vue')
-rw-r--r--test/fixtures/astro-styles-ssr/src/components/VueScoped.vue9
1 files changed, 9 insertions, 0 deletions
diff --git a/test/fixtures/astro-styles-ssr/src/components/VueScoped.vue b/test/fixtures/astro-styles-ssr/src/components/VueScoped.vue
new file mode 100644
index 000000000..0eee4dff1
--- /dev/null
+++ b/test/fixtures/astro-styles-ssr/src/components/VueScoped.vue
@@ -0,0 +1,9 @@
+<style scoped>
+.vue-title {
+ font-family: cursive;
+}
+</style>
+
+<template>
+ <h1 id="vue-scoped" class="vue-title">Vue Scoped CSS</h1>
+</template>