szr190 69e320b640 feat: H5页面开发 3 ay önce
..
HyCard.vue 69e320b640 feat: H5页面开发 3 ay önce
HyCharge.vue 16c3c09c36 fix: 组件封装 4 ay önce
HyPopup.vue 69e320b640 feat: H5页面开发 3 ay önce
HySelect.vue 69e320b640 feat: H5页面开发 3 ay önce
HyService.vue 5ee48efa28 feat: 页面开发 3 ay önce
HyShopItem.vue 69e320b640 feat: H5页面开发 3 ay önce
HyStation.vue 5ee48efa28 feat: 页面开发 3 ay önce
HyTabs.vue 8699167f16 init 4 ay önce
HyTag.vue 69e320b640 feat: H5页面开发 3 ay önce
README.md 5ee48efa28 feat: 页面开发 3 ay önce

README.md

<script setup lang="ts">
import { ref } from 'vue'

const showCustomPopup = ref(false)
</script>

<template>
  <view class="index-container u-padding-20">
    <HyCharge /><br />
    <HyService /><br />
    <HyShopItem /><br />
    <HyStation /><br />
    <HyTag needBorder />
    <HyPopup v-model="showCustomPopup" width="650rpx" showClose>
      <view style="height: 500rpx; background-color: #fff"></view>
    </HyPopup>
  </view>
</template>

<style lang="scss" scoped></style>