26 lines
585 B
Vue
26 lines
585 B
Vue
<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')
|
|
})
|
|
</script>
|
|
|
|
<style lang="scss" scoped>
|
|
|
|
</style>
|