You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
shop-app/pages/cart/tabBarCart.vue

31 lines
519 B

<!--
* @Author: ch
* @Date: 2022-04-08 18:36:14
* @LastEditors: ch
* @LastEditTime: 2022-04-22 14:47:43
* @Description: file content
-->
<template>
<PageCtx ref="page" type="tabBar" class="page"/>
</template>
<script>
import PageCtx from './components/PageCtx';
export default {
components : {PageCtx},
onShow(){
this.$refs.page && this.$refs.page.open()
},
mounted(){
this.$refs.page.open();
}
}
</script>
<style lang="scss" >
page {
background: $color-grey1;
padding-bottom: 240rpx;
}
</style>