@tapni/auth 0.0.14 → 0.0.16
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/TapniAuth.es.js +320 -316
- package/dist/TapniAuth.umd.js +2 -2
- package/package.json +1 -1
- package/src/views/Login.vue +4 -1
package/package.json
CHANGED
package/src/views/Login.vue
CHANGED
|
@@ -24,7 +24,7 @@
|
|
|
24
24
|
/>
|
|
25
25
|
</i>
|
|
26
26
|
</a>
|
|
27
|
-
<h1 class="bold no-bottom center-text" style="margin-top: 63px;">
|
|
27
|
+
<h1 class="bold no-bottom center-text" style="margin-top: 63px;" @click="bum">
|
|
28
28
|
{{ this.ssoLang[this.appLang].login }}
|
|
29
29
|
</h1>
|
|
30
30
|
<p class="half-bottom small-top center-text color-black"></p>
|
|
@@ -371,6 +371,9 @@ export default {
|
|
|
371
371
|
createAccountModal() {
|
|
372
372
|
EventBus.$emit('ssoEvent', {name: 'toggleAddAccountModalRegister', data: {}})
|
|
373
373
|
},
|
|
374
|
+
async bum () {
|
|
375
|
+
this.storage.token = '321213';
|
|
376
|
+
}
|
|
374
377
|
},
|
|
375
378
|
watch: {
|
|
376
379
|
emailOrUsername(nv) {
|