diff options
author | 2021-12-22 16:11:05 -0500 | |
---|---|---|
committer | 2021-12-22 16:11:05 -0500 | |
commit | 6ddd7678ffb6598ae6e263706813cb5e94535f02 (patch) | |
tree | d4b45f7590b59c3574bd6593b17d8066f71007c6 /examples/fast-build/src/components/Greeting.vue | |
parent | 305ce4182fbe89abcfb88008ddce178bd8863b6a (diff) | |
download | astro-6ddd7678ffb6598ae6e263706813cb5e94535f02.tar.gz astro-6ddd7678ffb6598ae6e263706813cb5e94535f02.tar.zst astro-6ddd7678ffb6598ae6e263706813cb5e94535f02.zip |
Use accessible indentation (#2253)
Diffstat (limited to 'examples/fast-build/src/components/Greeting.vue')
-rw-r--r-- | examples/fast-build/src/components/Greeting.vue | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/examples/fast-build/src/components/Greeting.vue b/examples/fast-build/src/components/Greeting.vue index 69fa4fbca..a94f586bf 100644 --- a/examples/fast-build/src/components/Greeting.vue +++ b/examples/fast-build/src/components/Greeting.vue @@ -1,20 +1,20 @@ <script> export default { - data() { - return { - greeting: 'Hello World!', - }; - }, + data() { + return { + greeting: 'Hello World!', + }; + }, }; </script> <template> - <p class="greeting">{{ greeting }}</p> + <p class="greeting">{{ greeting }}</p> </template> <style> .greeting { - color: red; - font-weight: bold; + color: red; + font-weight: bold; } </style> |