vue-bookmark
Vue component that enables localstorage based Vue route bookmarks
It will store an object array in JSON with the following format: {url: '', name: ''}
The name will be fetched from the current route name or stored as an empty string
Installation
npm i --save vue-bookmark
Browser
Include the script file and install the component with Vue.use(VueBookmark);
Following that you can use it like so:
Module
; Vue;
or you can name it
; Vue
Props
storageName
Sets the name that will be used for the localstorage item Default: 'bookmark'
Slot
The component uses a Font Awesome 4.7 icon as default but you can use any other element with the slot:
bookmark
Planned
- Add database storage of bookmarks
- Add editing of bookmark name when clicked