2019-07-19 13:51:57 -07:00
|
|
|
<template>
|
|
|
|
<div id="NotesPage">
|
|
|
|
<div class="ui segment">
|
|
|
|
<search-bar />
|
|
|
|
</div>
|
|
|
|
|
2019-07-20 16:07:22 -07:00
|
|
|
|
2019-07-19 13:51:57 -07:00
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script>
|
|
|
|
|
|
|
|
//ajax calls
|
|
|
|
import axios from 'axios';
|
|
|
|
// import { mapGetters } from 'vuex'
|
|
|
|
|
|
|
|
export default {
|
|
|
|
name: 'Notes',
|
|
|
|
components:{
|
|
|
|
'search-bar': require('./SearchBar.vue').default
|
|
|
|
},
|
|
|
|
data () {
|
|
|
|
return {
|
|
|
|
notes: null,
|
|
|
|
activeNoteId: null
|
|
|
|
}
|
|
|
|
},
|
|
|
|
beforeMount(){
|
|
|
|
|
|
|
|
},
|
|
|
|
mounted: function() {
|
|
|
|
//this.getLatest()
|
|
|
|
},
|
|
|
|
methods: {
|
2019-07-20 16:07:22 -07:00
|
|
|
|
2019-07-19 13:51:57 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
</script>
|