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