Base.vue 359 B

12345678910111213141516171819202122
  1. <template></template>
  2. <script>
  3. import { ref, onMounted, computed } from "vue";
  4. import { mapState } from "vuex";
  5. import exchangeUrl from "utils/exchangeUrl";
  6. export default {
  7. setup() {
  8. function init() {}
  9. onMounted(() => {
  10. init();
  11. });
  12. return {
  13. init,
  14. exchangeUrl,
  15. };
  16. },
  17. };
  18. </script>
  19. <style lang="scss" scoped>
  20. </style>