We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 95b8933 commit 2981fc5Copy full SHA for 2981fc5
src/components/Login.vue
@@ -60,8 +60,11 @@ export default {
60
inject: ["io", "user", "reAuthenticate"],
61
data: () => ({
62
authorizing: false,
63
- origin: location.origin.startsWith("http") ? location.origin : "https://studio.vueplay.com"
+ origin: "https://studio.vueplay.com"
64
}),
65
+ mounted() {
66
+ this.origin = location.origin.startsWith("http") ? location.origin : "https://studio.vueplay.com"
67
+ },
68
methods: {
69
login() {
70
this.authorizing = true;
0 commit comments