Initial commit
This commit is contained in:
+13
@@ -0,0 +1,13 @@
|
||||
"use strict";
|
||||
const common_vendor = require("../common/vendor.js");
|
||||
const useInviteStore = common_vendor.defineStore("invite", {
|
||||
state: () => ({
|
||||
inviteCode: ""
|
||||
}),
|
||||
actions: {
|
||||
setInviteCode(inviteCode) {
|
||||
this.inviteCode = inviteCode;
|
||||
}
|
||||
}
|
||||
});
|
||||
exports.useInviteStore = useInviteStore;
|
||||
Reference in New Issue
Block a user