Setup
Installation
Install both the styles and the components package.
# NPMnpm install @fronntui/styles @fronntui/vue
# PNPMpnpm install @fronntui/styles @fronntui/vue
# Yarnyarn add @fronntui/styles @fronntui/vue
Use
Import the styles so that they are bundled with your app.
import "@fronntui/styles";import { createApp } from "vue";
const app = createApp({});
Import and use components throughout your app.
<script setup>import { NNButton } from "@fronntui/vue";</script>
<template> <NNButton>Click me</NNButton></template>