diff options
Diffstat (limited to 'examples/fast-build/src/components/Greeting.vue')
-rw-r--r-- | examples/fast-build/src/components/Greeting.vue | 20 |
1 files changed, 0 insertions, 20 deletions
diff --git a/examples/fast-build/src/components/Greeting.vue b/examples/fast-build/src/components/Greeting.vue deleted file mode 100644 index a94f586bf..000000000 --- a/examples/fast-build/src/components/Greeting.vue +++ /dev/null @@ -1,20 +0,0 @@ -<script> -export default { - data() { - return { - greeting: 'Hello World!', - }; - }, -}; -</script> - -<template> - <p class="greeting">{{ greeting }}</p> -</template> - -<style> -.greeting { - color: red; - font-weight: bold; -} -</style> |