9433cfb9创建于 2025年12月31日历史提交
<template>
  <view style="text-align: center; padding: 15px;">
    {{name}}的详情页面
  </view>
</template>

<script setup>
  let name = ref("")
  onLoad((options: OnLoadOptions) => {
    name.value = (options["name"] as string | null) ?? ""
  })
</script>

<style>

</style>