dl_site_app/src/pages/index/index.vue

26 lines
585 B
Vue
Raw Normal View History

2025-08-10 23:06:19 +08:00
<template>
<view class="content">
{{$t('index.companyProfile')}}
<ConfirmPopup ref="comfirmPopupRef" v-if="popupShow" />
</view>
</template>
<script setup>
import { ref } from 'vue';
import { onLoad } from '@dcloudio/uni-app';
import { index } from '@/stores/index.js';
import { useComfirmPopup } from '@/hooks/utils.js';
import { getFriendLink } from '@/api/index.js';
const { popupShow,comfirmPopupRef,openPopup } = useComfirmPopup()
const piniaIndex = index()
onLoad(() => {
uni.setLocale('en')
2025-08-10 23:06:19 +08:00
})
</script>
<style lang="scss" scoped>
</style>