| 12345678910111213141516171819202122 |
- <template></template>
- <script>
- import { ref, onMounted, computed } from "vue";
- import { mapState } from "vuex";
- import exchangeUrl from "utils/exchangeUrl";
- export default {
- setup() {
- function init() {}
- onMounted(() => {
- init();
- });
- return {
- init,
- exchangeUrl,
- };
- },
- };
- </script>
- <style lang="scss" scoped>
- </style>
|