aboutsummaryrefslogtreecommitdiff
path: root/src/App.vue
diff options
context:
space:
mode:
authorAndrew Lee <alee14498@protonmail.com>2020-08-06 16:52:10 -0400
committerAndrew Lee <alee14498@protonmail.com>2020-08-06 16:52:10 -0400
commit96fb771ab62bbaa6fab1abd455455e23138edb8f (patch)
treef55a05e1cc51c484e3bfdedb8f7b03cf9b89e493 /src/App.vue
parent745160ba8dc87ffbfb6332bb3a1742cb976ce7f8 (diff)
downloadalee-dashboard-96fb771ab62bbaa6fab1abd455455e23138edb8f.tar.gz
alee-dashboard-96fb771ab62bbaa6fab1abd455455e23138edb8f.tar.bz2
alee-dashboard-96fb771ab62bbaa6fab1abd455455e23138edb8f.zip
Addede vuetifyHEADmaster
Diffstat (limited to 'src/App.vue')
-rw-r--r--src/App.vue18
1 files changed, 5 insertions, 13 deletions
diff --git a/src/App.vue b/src/App.vue
index 55df315..f0d40da 100644
--- a/src/App.vue
+++ b/src/App.vue
@@ -1,28 +1,20 @@
<template>
- <div id="app">
- <img alt="Vue logo" src="./assets/logo.png">
- <HelloWorld msg="Welcome to Your Vue.js App"/>
- </div>
+ <v-app>
+ <h1>Hello world</h1>
+ </v-app>
</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>