Skip to content

Commit a0919af

Browse files
committed
feat(uni-app-components): add AdFullscreenVideo
1 parent 0033f92 commit a0919af

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 { AdFullscreenVideoProps } from "@uni-helper/uni-app-types";
3+
4+
defineOptions({
5+
name: "AdFullscreenVideo",
6+
});
7+
8+
const props = defineProps<AdFullscreenVideoProps>();
9+
</script>
10+
11+
<template>
12+
<ad-fullscreen-video :props></ad-fullscreen-video>
13+
</template>
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
import type { AdFullscreenVideoInstance } from "@uni-helper/uni-app-types";
2+
import AdFullscreenVideo from "./AdFullscreenVideo.vue";
3+
4+
export default AdFullscreenVideo;
5+
6+
export { AdFullscreenVideo, type AdFullscreenVideoInstance };
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
export * from "./AdContentPage";
22
export * from "./AdDraw";
3+
export * from "./AdFullscreenVideo";
34
export * from "./View";
45
export * from "./Input";

0 commit comments

Comments
 (0)