@springmatter/components
v4.6.8
Published
The Springmatter Component Library is a set of components and tools for rapidly building applications from the ground up.
Readme
@springmatter/components
The Springmatter Component Library is a set of components and tools for rapidly building applications from the ground up.
Getting Started
Install
npm install @springmatter/componentsImport
Import the components into your main file and register the components. This must be done before calling new Vue(), and it will also automatically include our CSS files.
import components from "@springmatter/components";
for (let c of components) { Vue.component(c.name, c); }
new Vue({ ... });