feat: anchor - copy link to clipboard
This commit is contained in:
23
client/js/store/modules/anchor.js
Normal file
23
client/js/store/modules/anchor.js
Normal file
@@ -0,0 +1,23 @@
|
||||
'use strict'
|
||||
|
||||
export default {
|
||||
state: {
|
||||
shown: false,
|
||||
hash: ''
|
||||
},
|
||||
getters: {},
|
||||
mutations: {
|
||||
anchorChange: (state, opts) => {
|
||||
state.shown = (opts.shown === true)
|
||||
state.hash = opts.hash || ''
|
||||
}
|
||||
},
|
||||
actions: {
|
||||
anchorOpen({ commit, dispatch }, hash) {
|
||||
commit('anchorChange', { shown: true, hash })
|
||||
},
|
||||
anchorClose({ commit, dispatch }) {
|
||||
commit('anchorChange', { shown: false })
|
||||
}
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user