Poprawki wizualne responsywności

This commit is contained in:
2021-03-13 19:11:00 +01:00
parent 2f2c247574
commit 12c7c44014
15 changed files with 127 additions and 116 deletions
+18
View File
@@ -0,0 +1,18 @@
import store from "@/store";
import { Module, VuexModule, Mutation, Action, MutationAction } from "vuex-module-decorators";
@Module({ dynamic: true, store, name: "dataModule" })
export default class MyModule extends VuexModule {
test: string = "xd";
get getTest() {
return this.test;
}
@MutationAction
async fetchTest() {
const fetched = "aaa";
return { test: fetched };
}
}