More fixes due to dumb merge.
This commit is contained in:
parent
0994e2eb7a
commit
ff782cbd11
12
src/App.vue
12
src/App.vue
|
@ -1,6 +1,14 @@
|
||||||
<template>
|
<template>
|
||||||
<div id="app">
|
<div id="app">
|
||||||
<img alt="Vue logo" src="./assets/logo.png" />
|
<NoteList />
|
||||||
<h1>Welcome to Your Vue.js App</h1>
|
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
import NoteList from '@/components/NoteList.vue'
|
||||||
|
export default {
|
||||||
|
components: {
|
||||||
|
NoteList
|
||||||
|
}
|
||||||
|
}
|
||||||
|
</script>
|
||||||
|
|
Loading…
Reference in New Issue