💄 Site > Code > Hide scrollbar

This commit is contained in:
brunosimon
2017-09-03 21:29:42 +02:00
parent d9a977cff6
commit b1dc8bb2ee
5 changed files with 63 additions and 12 deletions
+7 -1
View File
@@ -17,7 +17,8 @@ export default new Vuex.Store({
state:
{
url: ''
url: '',
scrollbarWidth: 0
},
mutations:
@@ -25,6 +26,11 @@ export default new Vuex.Store({
updateUrl(state, data)
{
state.url = data
},
updateScrollbarWidth(state, data)
{
state.scrollbarWidth = data
}
}
})