|
|
месяцев назад: 2 | |
|---|---|---|
| .. | ||
| HyCard.vue | месяцев назад: 2 | |
| HyCharge.vue | месяцев назад: 2 | |
| HyPopup.vue | месяцев назад: 2 | |
| HySelect.vue | месяцев назад: 2 | |
| HyService.vue | месяцев назад: 2 | |
| HyShopItem.vue | месяцев назад: 2 | |
| HyStation.vue | месяцев назад: 2 | |
| HyTabs.vue | месяцев назад: 2 | |
| HyTag.vue | месяцев назад: 2 | |
| README.md | месяцев назад: 2 | |
<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>