-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathApp.vue
38 lines (34 loc) · 1.02 KB
/
App.vue
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
<template>
<img alt="Vue logo" src="./assets/logo.png">
<HelloWorld msg="Welcome to Your Vue.js + TypeScript App"/>
</template>
<script lang="ts">
import { defineComponent } from 'vue';
import useStore from '@/store';
import HelloWorld from './components/HelloWorld.vue';
import { AUTH_ACTION_TYPES } from './store/auth/actions';
import { AUTH_MUTATION_TYPES } from './store/auth/mutations';
export default defineComponent({
name: 'App',
components: {
HelloWorld
},
setup() {
const store = useStore()
// store.dispatch(AUTH_ACTION_TYPES.LOGIN, '123') // is error
store.dispatch(AUTH_ACTION_TYPES.LOGIN,{ email: '123', password: '123'}) // is valid
// store.commit(AUTH_MUTATION_TYPES.SET_TOKEN, 1) // is error
store.commit(AUTH_MUTATION_TYPES.SET_TOKEN, '1') // is valid
}
});
</script>
<style>
#app {
font-family: Avenir, Helvetica, Arial, sans-serif;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
text-align: center;
color: #2c3e50;
margin-top: 60px;
}
</style>