Skip to content

Commit 2e77196

Browse files
committed
feat(uni-app-components): add AdInteractive
1 parent 01222ce commit 2e77196

File tree

3 files changed

+20
-0
lines changed

3 files changed

+20
-0
lines changed
Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
<script setup lang="ts">
2+
import type { AdInteractiveProps } from "@uni-helper/uni-app-types";
3+
4+
defineOptions({
5+
name: "AdInteractive",
6+
});
7+
8+
const props = defineProps<AdInteractiveProps>();
9+
</script>
10+
11+
<template>
12+
<ad-draw :props></ad-draw>
13+
</template>
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
import type { AdInteractiveInstance } from "@uni-helper/uni-app-types";
2+
import AdInteractive from "./AdInteractive.vue";
3+
4+
export default AdInteractive;
5+
6+
export { AdInteractive, type AdInteractiveInstance };
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
export * from "./AdContentPage";
22
export * from "./AdDraw";
33
export * from "./AdFullscreenVideo";
4+
export * from "./AdInteractive";
45
export * from "./View";
56
export * from "./Input";

0 commit comments

Comments
 (0)