1.1.4 • Published 3 years ago

@ia-ghc/nuxt-components v1.1.4

Weekly downloads
1
License
MIT
Repository
github
Last release
3 years ago

This repository contains all colors, style variables, typography, shared components and documentation related to how ia-ghc styles it's NuXT projects. It serves as the single source of truth that other NuXT projects should use.

Using

npm install --save-dev @ia-ghc/components

There are two ways of using this package in NuXT, either importing everything using a plugin

import Vue from "vue";
import { install } from "@ia-ghc/nuxt-components";

Vue.use({ install });

or by manually importing as needed.

import { Heading, Logo } from "@ia-ghc/nuxt-components";

Tailwind CSS

in tailwind.config.js you'll want to extend the colors in.

const colors = require("@ia-ghc/nuxt-components/colors");

module.exports = {
  theme: {
    extend: {
      colors,
    },
  },
  // ...
};

Development

  1. Download the repository

  2. Run npm run storybook

  3. Start hacking

  • remember to export components in components.js

Deployment

Simply push to master and update projects using the package!

1.1.4

3 years ago

1.1.3

3 years ago

1.1.2

4 years ago

1.1.1

4 years ago

1.1.0

4 years ago

1.0.9

4 years ago

1.0.8

4 years ago

1.0.7

4 years ago

1.0.6

4 years ago

1.0.5

4 years ago

1.0.4

4 years ago

1.0.3

4 years ago

1.0.2

4 years ago

1.0.1

4 years ago

1.0.0

4 years ago