Quick Start
How to Use
After configuring via NPM, you can use the components directly in your pages without having to manually import them.
vue
<template>
<view class="container">
<see-button :title="title" />
</view>
</template>
<script lang="ts" setup>
import { ref } from "vue";
const title = ref("Default Button");
</script>vue
<template>
<view class="container">
<see-button :title="title" />
</view>
</template>
<script>
export default {
data() {
return {
title: "Default Button",
};
},
};
</script>🚀 You have completed the quick start and can now begin using the SeeYouUI component library.
