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