Setup

Installation

Install both the styles and the components package.

Terminal window
# NPM
npm install @fronntui/styles @fronntui/vue
# PNPM
pnpm install @fronntui/styles @fronntui/vue
# Yarn
yarn 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>
© 2024  inniti