docs: remove Ui prefix to prevent confusion

This commit is contained in:
zernonia 2023-12-01 11:01:49 +08:00
parent 02dfed5fcd
commit ba08e356c8

View File

@ -130,7 +130,7 @@ The command above will add the `Button` component to your project. Nuxt autoImpo
```vue {3}
<template>
<div>
<UiButton>Click me</UiButton>
<Button>Click me</Button>
</div>
</template>
```