New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details
Socket
Book a DemoSign in
Socket

forge-ui

Package Overview
Dependencies
Maintainers
1
Versions
29
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

forge-ui

A collection of basic, reusable Vue.js components. Components are collected in Forge and initialized on demand.

latest
Source
npmnpm
Version
0.8.1
Version published
Weekly downloads
8
-57.89%
Maintainers
1
Weekly downloads
 
Created
Source

ForgeUI

A collection of basic, reusable Vue.js components. Components are collected in Forge and initialized on demand.

ForgeUI aims to provide all the basic UI functionality you need without the need for rebuilding common interface components or use overly elaborate and specific CSS selectors to reskin the interface to match your own designs and style guide. Components are deliberately kept simple, and stylesheets and templates are fully customizable before you've added anything to the page.

ForgeUI v0.5.0 was updated to work with Vue 2.0

Full Docs: http://sstadt.github.io/forge-ui/

Quick Start

Install via npm

npm install forge-ui --save

Import ForgeUI components to Vue

import Vue from 'vue';
import Forge from 'forge-ui';

// Register a component with a custom template (optional)
import myTemplate from './template.html';
Forge.cast('modal', myTemplate);

// Register a component with a custom name (optional)
Forge.cast('modal', null, 'my-modal'); // you can now use the modal component with <my-modal></my-modal>

// Register all Forge components to Vue
Vue.use(Forge);

Current Component List

  • icon
  • alert
  • modal
  • prompt
  • tabs
  • tab
  • snackbar
  • fCheckbox
  • fForm
  • fInput
  • fSelect
  • fRadio

Coverage

gulp test

Road to 1.0

  • finish standard icon set
  • centralize demo js/html and auto inject from single source
  • build out a logo and restyle the docs

FAQs

Package last updated on 14 Feb 2018

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts