aboutsummaryrefslogtreecommitdiff
path: root/src/App.vue
diff options
context:
space:
mode:
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>