import { ref, reactive, computed, watch, watchEffect, onMounted, onUnmounted, nextTick } from 'vue' export { ref, reactive, computed, watch, watchEffect, onMounted, onUnmounted, nextTick } export function useRuntimeConfig() { return { app: { baseURL: '/' }, public: { apiBase: '/map/api' }, } } export function navigateTo(_path: string) {}