support: DefaultUi not adjusted well when deployed
See original GitHub issue
I use Vue3, and the above screenshot is when I do "npm run serve", displayed in my localhost.
The above one is the screenshot when I deploy to firebase server.
Here’s my html code.
<Player class="player" v-for="item in videos" :key="item.videoId" playsinline ref="player"@vPlaybackReady="onPlaybackReady">
<Video poster="https://media.vimejs.com/poster.png">
<source :data-src = item.videoId type="video/mp4">
</Video>
<DefaultUi>
<TapSidesToSeek />
</DefaultUi>
</Player>
Here’s my script code. import { Player, Video, DefaultUi } from ‘@vime/vue-next’; import ‘@vime/core/themes/default.css’;
What should I do to make this work? Thank you.
Issue Analytics
- State:
- Created 3 years ago
- Comments:12 (3 by maintainers)
Top Results From Across the Web
Automatically deploy Adaptive Protection suggested rules
This document provides configuration steps for automatically deploying ... If you do not configure a parameter, Google Cloud Armor uses the default value:....
Read more >Cisco Catalyst 9800 Wireless Controller Series Web UI ...
DEPLOY TRANSLATED AND UPDATED CONFIGURATION Once deployed, the configuration is pushed to the target wireless controller. Optionally, templates ...
Read more >Challenges and Strategies for Schools - jstor
particularly those whose parents are deployed. It fo- cuses on students' needs, challenges faced by families and schools, and support mechanisms in place....
Read more >Deploy and Access the Kubernetes Dashboard
The Dashboard UI is not deployed by default. To deploy it, run the ... Currently, Dashboard only supports logging in with a Bearer...
Read more >Best practice power settings for Surface devices
This article applies to all currently supported Surface devices ... or adjusting advanced power settings not visible in the default UI ...
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found

Hey @Enigma10 sure…
npm installcd coreand runnpm installnpm run serveFullscreen Code is mostly here:
The theme code is here:
After editing the themes you run
npm run build:themesto setup them up for production and you’ll find the output here:Fixed this problem by import default.css from main.js (I guess styles should load before player). Also took css from CDN (I develop local project without internet connection)