diff options
| author | Yuval Adam <_@yuv.al> | 2018-06-09 12:58:38 +0300 |
|---|---|---|
| committer | Yuval Adam <_@yuv.al> | 2018-06-09 12:58:38 +0300 |
| commit | b366f20c3bc0f96565647fada14c55c37b57a568 (patch) | |
| tree | 028145a547bd4390930d6bc24ab21c2969f344cf /src/App.vue | |
Initial vue project
Diffstat (limited to 'src/App.vue')
| -rw-r--r-- | src/App.vue | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/src/App.vue b/src/App.vue new file mode 100644 index 0000000..6f86de0 --- /dev/null +++ b/src/App.vue @@ -0,0 +1,28 @@ +<template> + <div id="app"> + <img src="./assets/logo.png"> + <HelloWorld/> + </div> +</template> + +<script> +import HelloWorld from './components/HelloWorld' + +export default { + name: 'App', + components: { + HelloWorld + } +} +</script> + +<style> +#app { + font-family: 'Avenir', Helvetica, Arial, sans-serif; + -webkit-font-smoothing: antialiased; + -moz-osx-font-smoothing: grayscale; + text-align: center; + color: #2c3e50; + margin-top: 60px; +} +</style> |
