Skip to content

Commit

Permalink
feat(uni-app-components): add AdFullscreenVideo
Browse files Browse the repository at this point in the history
  • Loading branch information
ModyQyW committed Sep 1, 2024
1 parent 0033f92 commit a0919af
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 { AdFullscreenVideoProps } from "@uni-helper/uni-app-types";
defineOptions({
name: "AdFullscreenVideo",
});
const props = defineProps<AdFullscreenVideoProps>();
</script>

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

export default AdFullscreenVideo;

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

0 comments on commit a0919af

Please sign in to comment.