15 lines
170 B
Vue
15 lines
170 B
Vue
<script setup lang="ts">
|
|
import { UButton } from '#components';
|
|
|
|
|
|
</script>
|
|
|
|
<template>
|
|
<div>
|
|
<UButton>Click me</UButton>
|
|
</div>
|
|
</template>
|
|
|
|
|
|
<style scoped></style>
|