test_lgq/niucloud/addon/hello_world/uni-app/pages/index.vue

26 lines
529 B
Vue
Raw Permalink Normal View History

2024-01-24 17:36:08 +08:00
<template>
<view class="bg-gray-100 min-h-[100vh]">
<view class="fixed top-0 inset-x-0 z-10">
hello_world
</view>
<tabbar />
</view>
</template>
<script setup lang="ts">
import { reactive, ref, onMounted } from 'vue'
import { onLoad } from '@dcloudio/uni-app'
import { t } from '@/locale'
import { useShare } from '@/hooks/useShare'
const { setShare, onShareAppMessage, onShareTimeline } = useShare()
setShare()
onShareAppMessage()
onShareTimeline()
</script>
<style lang="scss" scoped>
</style>