diff options
author | 2022-03-09 14:38:46 -0800 | |
---|---|---|
committer | 2022-03-09 16:38:46 -0600 | |
commit | 2906110c04039d5f5bd0e5fb917449e6b001e380 (patch) | |
tree | 13d745eee866ac86c302932945fb478b94194663 /examples/fast-build/src/components/Greeting.vue | |
parent | c9d84af6b1e451ce464a9280a2e39bfa6a9b798f (diff) | |
download | astro-2906110c04039d5f5bd0e5fb917449e6b001e380.tar.gz astro-2906110c04039d5f5bd0e5fb917449e6b001e380.tar.zst astro-2906110c04039d5f5bd0e5fb917449e6b001e380.zip |
Update tests for legacy build (#2746)
* move fast-build example into a test fixture for legacy build
* update tests for legacy build
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> |