@mrbakieness/tisc_nuxt
v1.0.12
Published
TISC NUXT Component Library
Readme
TISC Component Library

Install
Install the npm package by running the following code.
npm install @mrbakieness/tisc_nuxt --save-devUsage
For the components to be displayed correctly import the css in the nuxt.config.js file with the following code.
css: [
'@mrbakieness/tisc_nuxt/tisc.min.css'
]Once installed you can import any component from the library using the following code on your vue file.
import { tiscButton } from 'tisc_nuxt';
components: { tiscButton },Then you can use the component in your template like the following.
<tisc-button color='yellow' outline>button</tisc-button>