9 lines
251 B
Vue
9 lines
251 B
Vue
<script setup>
|
|
import HelloWorld from './components/HelloWorld.vue'
|
|
</script>
|
|
|
|
<template>
|
|
<button class="btn">Button</button>
|
|
<button class="btn btn-primary">Button</button>
|
|
<button class="btn w-64 rounded-full">Button</button>
|
|
</template> |