14 lines
182 B
Vue
14 lines
182 B
Vue
<script setup lang="ts">
|
|
import { Button } from '@/components/ui/button'
|
|
</script>
|
|
|
|
<template>
|
|
<div>
|
|
<Button>Click me</Button>
|
|
</div>
|
|
</template>
|
|
|
|
<style scoped>
|
|
|
|
</style>
|