More fixes due to dumb merge.

This commit is contained in:
Lukáš Kucharczyk 2020-08-25 14:04:46 +02:00
parent 0994e2eb7a
commit ff782cbd11
1 changed files with 10 additions and 2 deletions

View File

@ -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>