chore: add eslint and fix lint errors
This commit is contained in:
+5
-5
@@ -1,9 +1,9 @@
|
||||
export const state = () => ({
|
||||
title: ""
|
||||
});
|
||||
title: ''
|
||||
})
|
||||
|
||||
export const mutations = {
|
||||
setTitle(state, title) {
|
||||
state.title = title
|
||||
setTitle(currentState, title) {
|
||||
currentState.title = title
|
||||
}
|
||||
};
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user