Skip to content

Shared Vue components for HSRP applications (RADAR and I-WASTE)

License

Notifications You must be signed in to change notification settings

Eastern-Research-Group/hsrp-components

Repository files navigation

Netlify Status

HSRP Components

Shared component library for HSRP apps using Vue and documented via VuePress.

Full Documentation

View component demos and documentation here

Setup

# install dependencies
npm install

# start the VuePress instance for documentation, including live component demos
npm run docs:dev

# build the component library, bundled into dist directory
npm run build

# build the VuePress document site, bundled into docs/.vuepress/dist
npm run docs:build

How it works

Components

The library is a Vue plugin. Its install function in install.js imports all components from components folder, registers them to Vue and automatically call itself. You can also import components individually, either in main.js and register globally, or within specific single-file components. This method may be preferred so that IDEs are able to recognize component metadata.

<template>
  <Alert text="This is an alert message" />
  <Button label="Click me" />
</template>
<script>
import { Alert, Button } from 'hsrp-components';

export default {
  components: { Alert, Button },
}
</script>

Third-party libraries

The components within this library currently rely on uswds (U.S. Web Design System), and vue-select (for special text input/select functionality)

Tree-shaking

To ensure the smallest bundle size, import specific functions from dependencies.

About

Shared Vue components for HSRP applications (RADAR and I-WASTE)

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Contributors 3

  •  
  •  
  •