邃芒官网、邃芒慧影、口播(H5) https://m.metavatar.cc
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.
 
 
 
 

34 lines
527 B

  1. <template>
  2. <div></div>
  3. </template>
  4. <script>
  5. import Vue from "vue";
  6. import { mapState, mapActions } from "vuex";
  7. import { Toast } from "vant";
  8. import baseUrl from "../../api/baseUrl";
  9. Vue.use(Toast);
  10. export default {
  11. data() {
  12. return {};
  13. },
  14. computed: {
  15. ...mapState({
  16. characters: (state) => state.publicObj.characters,
  17. }),
  18. },
  19. methods: {
  20. ...mapActions(["setCharacters"]),
  21. go(url) {
  22. this.$router.push(url);
  23. },
  24. },
  25. created() {},
  26. };
  27. </script>
  28. <style lang="scss" scoped></style>