Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
S
simplevuestore
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Adam Procter
simplevuestore
Commits
7e9632d0
Commit
7e9632d0
authored
Mar 25, 2019
by
Adam Procter
💩
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
migrated to Actions
This is best practice to handle mutations.
parent
e958036d
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
1 deletion
+6
-1
src/components/EntryForm.vue
src/components/EntryForm.vue
+1
-1
src/store.js
src/store.js
+5
-0
No files found.
src/components/EntryForm.vue
View file @
7e9632d0
...
...
@@ -18,7 +18,7 @@
export
default
{
methods
:
{
changed
(
event
)
{
this
.
$store
.
commit
(
'
CHANGE_STAT
E
'
,
event
.
target
.
value
)
this
.
$store
.
dispatch
(
'
INCOMING_CHANG
E
'
,
event
.
target
.
value
)
},
reset
()
{
this
.
$store
.
commit
(
'
CLEAR_STATE
'
)
...
...
src/store.js
View file @
7e9632d0
...
...
@@ -14,6 +14,11 @@ export default new Vuex.Store({
this
.
replaceState
({
flavour
:
null
})
}
},
actions
:
{
INCOMING_CHANGE
(
_state
,
event
)
{
this
.
commit
(
'
CHANGE_STATE
'
,
event
)
}
},
getters
:
{
//flavour: state => state.flavour
currentflavour
:
state
=>
{
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment