File tree Expand file tree Collapse file tree 3 files changed +22
-0
lines changed
packages/uni-app-components/src/components Expand file tree Collapse file tree 3 files changed +22
-0
lines changed Original file line number Diff line number Diff line change
1
+ <script setup lang="ts">
2
+ import type { AdInterstitialProps } from " @uni-helper/uni-app-types" ;
3
+
4
+ defineOptions ({
5
+ name: " AdInterstitial" ,
6
+ });
7
+
8
+ const props = defineProps <AdInterstitialProps >();
9
+ </script >
10
+
11
+ <template >
12
+ <ad-interstitial :props >
13
+ <slot ></slot >
14
+ </ad-interstitial >
15
+ </template >
Original file line number Diff line number Diff line change
1
+ import type { AdInterstitialInstance } from "@uni-helper/uni-app-types" ;
2
+ import AdInterstitial from "./AdInterstitial.vue" ;
3
+
4
+ export default AdInterstitial ;
5
+
6
+ export { AdInterstitial , type AdInterstitialInstance } ;
Original file line number Diff line number Diff line change @@ -2,5 +2,6 @@ export * from "./AdContentPage";
2
2
export * from "./AdDraw" ;
3
3
export * from "./AdFullscreenVideo" ;
4
4
export * from "./AdInteractive" ;
5
+ export * from "./AdInterstitial" ;
5
6
export * from "./View" ;
6
7
export * from "./Input" ;
You can’t perform that action at this time.
0 commit comments