1.1.4 • Published 5 years ago

@ia-ghc/nuxt-components v1.1.4

Weekly downloads
1
License
MIT
Repository
github
Last release
5 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

5 years ago

1.1.3

5 years ago

1.1.2

5 years ago

1.1.1

5 years ago

1.1.0

5 years ago

1.0.9

5 years ago

1.0.8

5 years ago

1.0.7

5 years ago

1.0.6

5 years ago

1.0.5

5 years ago

1.0.4

5 years ago

1.0.3

5 years ago

1.0.2

5 years ago

1.0.1

5 years ago

1.0.0

5 years ago