Add toolbar and navigation drawer

This commit is contained in:
2019-03-02 15:11:46 +01:00
parent fc0e546219
commit d21380a6a4
7 changed files with 95 additions and 29 deletions
+9
View File
@@ -0,0 +1,9 @@
export const state = () => ({
title: ""
});
export const mutations = {
setTitle(state, title) {
state.title = title
}
};