fix build error
This commit is contained in:
15
apps/ecommerce-miniapp/src/pages/auth.vue
Normal file
15
apps/ecommerce-miniapp/src/pages/auth.vue
Normal file
@@ -0,0 +1,15 @@
|
||||
<template>
|
||||
<view class="auth">
|
||||
<text>Auth Page</text>
|
||||
</view>
|
||||
</template>
|
||||
|
||||
<script setup lang="ts">
|
||||
// Auth page component
|
||||
</script>
|
||||
|
||||
<style scoped>
|
||||
.auth {
|
||||
padding: 20px;
|
||||
}
|
||||
</style>
|
||||
15
apps/ecommerce-miniapp/src/pages/merchant-orders.vue
Normal file
15
apps/ecommerce-miniapp/src/pages/merchant-orders.vue
Normal file
@@ -0,0 +1,15 @@
|
||||
<template>
|
||||
<view class="merchant-orders">
|
||||
<text>Merchant Orders Page</text>
|
||||
</view>
|
||||
</template>
|
||||
|
||||
<script setup lang="ts">
|
||||
// Merchant Orders page component
|
||||
</script>
|
||||
|
||||
<style scoped>
|
||||
.merchant-orders {
|
||||
padding: 20px;
|
||||
}
|
||||
</style>
|
||||
Reference in New Issue
Block a user