File tree Expand file tree Collapse file tree 4 files changed +35
-23
lines changed
Expand file tree Collapse file tree 4 files changed +35
-23
lines changed Original file line number Diff line number Diff line change 11<template >
2- <div id =" app" >
3- < EZUIKitJs />
4- </div >
2+ <div id =" app" >
3+ < Player />
4+ </div >
55</template >
66
77<script >
8- import EZUIKitJs from ' ./components/EZUIKitJs .vue'
8+ import Player from " ./components/Player .vue" ;
99
1010export default {
11- name: ' App' ,
12- components: {
13- EZUIKitJs
14- }
15- }
11+ name: " App" ,
12+ components: {
13+ Player,
14+ },
15+ };
1616 </script >
1717
1818<style >
1919#app {
20- font-family : Avenir, Helvetica , Arial , sans-serif ;
21- -webkit-font-smoothing : antialiased ;
22- -moz-osx-font-smoothing : grayscale ;
23- text-align : center ;
24- color : #2c3e50 ;
25- margin-top : 60px ;
20+ font-family : Avenir, Helvetica , Arial , sans-serif ;
21+ -webkit-font-smoothing : antialiased ;
22+ -moz-osx-font-smoothing : grayscale ;
23+ text-align : center ;
24+ color : #2c3e50 ;
25+ margin-top : 60px ;
2626}
2727 </style >
Original file line number Diff line number Diff line change @@ -58,6 +58,12 @@ export default {
5858 },
5959 // language: "en", // zh | en
6060 // staticPath: "/ezuikit_static", // 如果想使用本地静态资源,请复制根目录下ezuikit_static 到当前目录下, 然后设置该值
61+ env: {
62+ // https://open.ys7.com/help/1772?h=domain
63+ // domain默认是 https://open.ys7.com, 如果是私有化部署或海外的环境,请配置对应的domain
64+ // The default domain is https://open.ys7.com If it is a private deployment or overseas (outside of China) environment, please configure the corresponding domain
65+ domain: " https://open.ys7.com"
66+ }
6167 });
6268 window .player = player;
6369 },
Original file line number Diff line number Diff line change 11<script setup lang="ts">
22// This starter template is using Vue 3 <script setup> SFCs
33// Check out https://vuejs.org/api/sfc-script-setup.html#script-setup
4- import EZUIKitJs from ' ./components/EZUIKitJs .vue'
4+ import Player from " ./components/Player .vue" ;
55 </script >
66
77<template >
8- < EZUIKitJs />
8+ < Player />
99</template >
1010
1111<style scoped>
1212.logo {
13- height : 6em ;
14- padding : 1.5em ;
15- will-change : filter;
13+ height : 6em ;
14+ padding : 1.5em ;
15+ will-change : filter;
1616}
1717.logo :hover {
18- filter : drop-shadow (0 0 2em #646cffaa );
18+ filter : drop-shadow (0 0 2em #646cffaa );
1919}
2020.logo.vue :hover {
21- filter : drop-shadow (0 0 2em #42b883aa );
21+ filter : drop-shadow (0 0 2em #42b883aa );
2222}
2323 </style >
Original file line number Diff line number Diff line change @@ -120,7 +120,13 @@ const init = () => {
120120 handleError : (err : any ) => {
121121 console .error (" handleError" , err );
122122 },
123- staticPath: " /ezuikit_static" , // 如果想使用本地静态资源,请复制根目录下ezuikit_static 到当前目录下, 然后设置该值
123+ // staticPath: "/ezuikit_static", // 如果想使用本地静态资源,请复制根目录下ezuikit_static 到当前目录下, 然后设置该值
124+ env: {
125+ // https://open.ys7.com/help/1772?h=domain
126+ // domain默认是 https://open.ys7.com, 如果是私有化部署或海外的环境,请配置对应的domain
127+ // The default domain is https://open.ys7.com If it is a private deployment or overseas (outside of China) environment, please configure the corresponding domain
128+ domain: " https://open.ys7.com"
129+ }
124130 });
125131 window .player = player ;
126132 // });
You can’t perform that action at this time.
0 commit comments