15 lines
187 B
Vue
15 lines
187 B
Vue
<template>
|
|
<div id="app">
|
|
<NoteList />
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import NoteList from '@/components/NoteList.vue'
|
|
export default {
|
|
components: {
|
|
NoteList
|
|
}
|
|
}
|
|
</script>
|