Finish merging.
This commit is contained in:
12
src/App.vue
12
src/App.vue
@ -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
BIN
src/assets/logo.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 6.7 KiB |
@ -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");
|
||||
|
Reference in New Issue
Block a user