mirror of
https://github.com/Monibuca/plugin-rtsp.git
synced 2026-04-22 23:37:11 +08:00
20 lines
326 B
HTML
20 lines
326 B
HTML
<meta charset="utf-8">
|
|
<title>plugin-rtsp demo</title>
|
|
<script src="https://unpkg.com/vue"></script>
|
|
<script src="./plugin-rtsp.umd.js"></script>
|
|
|
|
<link rel="stylesheet" href="./plugin-rtsp.css">
|
|
|
|
|
|
<div id="app">
|
|
<demo></demo>
|
|
</div>
|
|
|
|
<script>
|
|
new Vue({
|
|
components: {
|
|
demo: plugin-rtsp
|
|
}
|
|
}).$mount('#app')
|
|
</script>
|