diff options
| author | Terry Truong <terry06890@gmail.com> | 2022-03-02 10:58:22 +1100 |
|---|---|---|
| committer | Terry Truong <terry06890@gmail.com> | 2022-03-02 11:05:21 +1100 |
| commit | af1555e223ebb1b1813b9b85f4cf8dddc432189e (patch) | |
| tree | 4bf05330cd497f5926d4c7aea4136e3cb3ffc194 /src/App.vue | |
Initial commit
Diffstat (limited to 'src/App.vue')
| -rw-r--r-- | src/App.vue | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/src/App.vue b/src/App.vue new file mode 100644 index 0000000..a8c04d7 --- /dev/null +++ b/src/App.vue @@ -0,0 +1,20 @@ +<script> +export default { + data() { + return { + greeting: 'Hello World!' + } + } +} +</script> + +<template> + <p class="greeting">{{ greeting }}</p> +</template> + +<style> +.greeting { + color: green; + font-weight: bold; +} +</style> |
