Skip to content

Commit

Permalink
feat(uni-app-components): add AdContentPage
Browse files Browse the repository at this point in the history
  • Loading branch information
ModyQyW committed Sep 1, 2024
1 parent fa789dd commit 3bae235
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
<script setup lang="ts">
import type { AdContentPageProps } from "@uni-helper/uni-app-types";
defineOptions({
name: "AdContentPage",
});
const props = defineProps<AdContentPageProps>();
</script>

<template>
<ad-content-page :props></ad-content-page>
</template>
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
import type { AdContentPageInstance } from "@uni-helper/uni-app-types";
import AdContentPage from "./AdContentPage.vue";

export default AdContentPage;

export { AdContentPage, type AdContentPageInstance };
1 change: 1 addition & 0 deletions packages/uni-app-components/src/components/index.ts
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
export * from "./AdContentPage";
export * from "./View";
export * from "./Input";

0 comments on commit 3bae235

Please # to comment.