aboutsummaryrefslogtreecommitdiff
path: root/src/App.vue
diff options
context:
space:
mode:
authorAndrew Lee <alee14498@protonmail.com>2020-08-06 16:01:30 -0400
committerAndrew Lee <alee14498@protonmail.com>2020-08-06 16:01:30 -0400
commit745160ba8dc87ffbfb6332bb3a1742cb976ce7f8 (patch)
treee9aa294380a367c651d6e9cee41a897fa4e9fada /src/App.vue
downloadalee-dashboard-745160ba8dc87ffbfb6332bb3a1742cb976ce7f8.tar.gz
alee-dashboard-745160ba8dc87ffbfb6332bb3a1742cb976ce7f8.tar.bz2
alee-dashboard-745160ba8dc87ffbfb6332bb3a1742cb976ce7f8.zip
init
Diffstat (limited to 'src/App.vue')
-rw-r--r--src/App.vue28
1 files changed, 28 insertions, 0 deletions
diff --git a/src/App.vue b/src/App.vue
new file mode 100644
index 0000000..55df315
--- /dev/null
+++ b/src/App.vue
@@ -0,0 +1,28 @@
+<template>
+ <div id="app">
+ <img alt="Vue logo" src="./assets/logo.png">
+ <HelloWorld msg="Welcome to Your Vue.js App"/>
+ </div>
+</template>
+
+<script>
+import HelloWorld from './components/HelloWorld.vue'
+
+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>