Skip to content

Commit

Permalink
fix(vuetify): add vuetify properly
Browse files Browse the repository at this point in the history
  • Loading branch information
yogakurniawan committed May 1, 2020
1 parent 42f54d5 commit d495a57
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions src/App.vue
Original file line number Diff line number Diff line change
@@ -1,19 +1,19 @@
<template>
<v-app>
<v-content>
<HelloWorld/>
<Example/>
</v-content>
</v-app>
</template>

<script>
import HelloWorld from './components/HelloWorld';
import Example from './components/Example';
export default {
name: 'App',
components: {
HelloWorld,
Example,
},
data: () => ({
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,6 @@

<script>
export default {
name: "HelloWorld"
name: "Example"
};
</script>

0 comments on commit d495a57

Please sign in to comment.