SolidScribe/client/src/components/Notes.vue
Max G e6c16f3d37 Better formatting and tag stripping for note title display
cleaned up interface a bunch
allow for opening of two notes at once
Escape closes note
Added global helper class and time ago function
Time ago function displays on main page and in note
Removed tab button creating tabbed spaces in document
Simplified save text
2019-07-20 23:07:22 +00:00

38 lines
491 B
Vue

<template>
<div id="NotesPage">
<div class="ui segment">
<search-bar />
</div>
</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: {
}
}
</script>