You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
219 B
15 lines
219 B
|
|
import { mapState } from 'vuex'
|
|
|
|
export default {
|
|
computed: {
|
|
...mapState({
|
|
city: state=> state.user.vuex_cityInfo.city,
|
|
vuex_cityInfo: state=> state.user.vuex_cityInfo
|
|
}),
|
|
},
|
|
data() {
|
|
return {
|
|
}
|
|
}
|
|
}
|