tiny-vue/examples/react-site/demos/app/button/button-round.vue

9 lines
229 B
Vue

<template>
<button-round-demo></button-round-demo>
</template>
<script>
import ButtonRound from "@/webcomps/button/button-round-webcomp.js";
customElements.define("button-round-demo", ButtonRound);
export default {};
</script>