Skip to content

Commit

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

<template>
<ad-draw :props></ad-draw>
</template>
6 changes: 6 additions & 0 deletions packages/uni-app-components/src/components/AdDraw/index.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
import type { AdDrawInstance } from "@uni-helper/uni-app-types";
import AdDraw from "./AdDraw.vue";

export default AdDraw;

export { AdDraw, type AdDrawInstance };
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,3 +1,4 @@
export * from "./AdContentPage";
export * from "./AdDraw";
export * from "./View";
export * from "./Input";

0 comments on commit 753606a

Please # to comment.