Finish merging.

This commit is contained in:
2020-08-25 13:00:03 +02:00
parent 3fee95d84f
commit 0994e2eb7a
9 changed files with 12141 additions and 13 deletions

View File

@ -1,14 +1,6 @@
<template>
<div id="app">
<NoteList />
<img alt="Vue logo" src="./assets/logo.png" />
<h1>Welcome to Your Vue.js App</h1>
</div>
</template>
<script>
import NoteList from '@/components/NoteList.vue'
export default {
components: {
NoteList
}
}
</script>

BIN
src/assets/logo.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.7 KiB

View File

@ -1,4 +1,4 @@
import { createApp } from 'vue'
import App from './App.vue'
import { createApp } from "vue";
import App from "./App.vue";
const mounted = createApp(App).mount('#app') // eslint-disable-line
createApp(App).mount("#app");