feat: add stackblitz playground

This commit is contained in:
Justineo
2021-09-19 15:34:14 +08:00
parent 8a2e1e3187
commit afb1c0f1ac
14 changed files with 127 additions and 40 deletions

View File

@@ -0,0 +1,21 @@
<template>
<main>
<demo/>
</main>
</template>
<script>
import Demo from './Demo'
export default {
components: {
Demo
}
}
</script>
<style scoped>
main {
padding: 24px;
}
</style>