-
-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
22 additions
and
0 deletions.
There are no files selected for viewing
15 changes: 15 additions & 0 deletions
15
packages/uni-app-components/src/components/AdRewardedVideo/AdRewardedVideo.vue
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
<script setup lang="ts"> | ||
import type { AdRewardedVideoProps } from "@uni-helper/uni-app-types"; | ||
defineOptions({ | ||
name: "AdRewardedVideo", | ||
}); | ||
const props = defineProps<AdRewardedVideoProps>(); | ||
</script> | ||
|
||
<template> | ||
<ad-rewarded-video :props> | ||
<slot></slot> | ||
</ad-rewarded-video> | ||
</template> |
6 changes: 6 additions & 0 deletions
6
packages/uni-app-components/src/components/AdRewardedVideo/index.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
import type { AdRewardedVideoInstance } from "@uni-helper/uni-app-types"; | ||
import AdRewardedVideo from "./AdRewardedVideo.vue"; | ||
|
||
export default AdRewardedVideo; | ||
|
||
export { AdRewardedVideo, type AdRewardedVideoInstance }; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters