视频嵌入

嵌入像Youtube这样的视频很容易。 默认情况下它也调整大小以适应容器。

安装

编辑 /quasar.conf.js:

framework: {
components: ['QVideo']
}

使用QVideo

<q-video
src="https://www.youtube.com/embed/k3_tw44QsZQ?rel=0"
style="width: 853px; height: 480px"
/>

或者,如果您更愿意使用“原始”版本进行更多控制:

<div class="q-video">
<iframe
width="853"
height="480"
src="https://www.youtube.com/embed/k3_tw44QsZQ?rel=0"
frameborder="0"
allowfullscreen
></iframe>
</div>