init repo
This commit is contained in:
17
src/App.html
Normal file
17
src/App.html
Normal file
@@ -0,0 +1,17 @@
|
||||
<h1>
|
||||
rrweb player playground
|
||||
</h1>
|
||||
<Player />
|
||||
|
||||
<style>
|
||||
</style>
|
||||
|
||||
<script>
|
||||
import Player from './Player.html';
|
||||
|
||||
export default {
|
||||
components: {
|
||||
Player
|
||||
}
|
||||
}
|
||||
</script>
|
||||
17
src/Player.html
Normal file
17
src/Player.html
Normal file
@@ -0,0 +1,17 @@
|
||||
<div class="rr-player">
|
||||
rrplayer
|
||||
</div>
|
||||
|
||||
<style>
|
||||
.rr-player {
|
||||
border: 1px solid indianred;
|
||||
}
|
||||
</style>
|
||||
|
||||
<script>
|
||||
export default {
|
||||
data() {
|
||||
return {}
|
||||
}
|
||||
}
|
||||
</script>
|
||||
10
src/main.js
Normal file
10
src/main.js
Normal file
@@ -0,0 +1,10 @@
|
||||
import App from './App.html';
|
||||
|
||||
const app = new App({
|
||||
target: document.body,
|
||||
data: {
|
||||
name: 'world'
|
||||
}
|
||||
});
|
||||
|
||||
export default app;
|
||||
Reference in New Issue
Block a user