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