dashboard
repositories
filestore
activity
search
login
Stockzhjys
/
admin-vue
Stock综合交易所
summary
reflog
commits
tree
docs
forks
compare
blame
|
history
|
raw
first commit
dcc
2024-06-13
d583372447e4958fed5b5d5004f98baf6ce433f1
[Stockzhjys/admin-vue.git]
/
src
/
store
/
modules
/
note.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
const Note = {
state: {
tags: [],
class: [],
},
getters: {},
mutations: {
SET_NOTE_TAGS(state, tags) {
state.tags = tags
},
PUSH_NOTE_TAG(state, tag) {
state.tags.unshift(tag)
},
},
}
export default Note