Merge branch 'trunk' into feat/share-coupon
This commit is contained in:
3
src/pages/give-vip/index.config.ts
Normal file
3
src/pages/give-vip/index.config.ts
Normal file
@ -0,0 +1,3 @@
|
||||
export default definePageConfig({
|
||||
navigationBarTitleText: '赠送会员',
|
||||
});
|
||||
1
src/pages/give-vip/index.less
Normal file
1
src/pages/give-vip/index.less
Normal file
@ -0,0 +1 @@
|
||||
.give-vip {}
|
||||
12
src/pages/give-vip/index.tsx
Normal file
12
src/pages/give-vip/index.tsx
Normal file
@ -0,0 +1,12 @@
|
||||
import { Button } from '@taroify/core';
|
||||
|
||||
import { logWithPrefix } from '@/utils/common';
|
||||
|
||||
import './index.less';
|
||||
|
||||
const PREFIX = 'give-vip';
|
||||
const log = logWithPrefix(PREFIX);
|
||||
|
||||
export default function GiveVip() {
|
||||
return <div className={PREFIX}></div>;
|
||||
}
|
||||
Reference in New Issue
Block a user