@mithicher/septemberui
v0.0.4
Published
A collection of simple, modular and component library that gives you the building blocks you need to build your Laravel-Vue applications.
Downloads
4
Readme
Septemberui
A collection of simple, modular and component library that gives you the building blocks you need to build your Laravel-Vue applications.
Installation
npm install --save @mithicher/septemberui
Usage
In Main.js
import Vue from 'vue'
import "@mithicher/septemberui/dist/septemberui.css";
In SFC (Single File Components)
<script>
import { TextInput } from "@mithicher/septemberui";
export default {
components: {
TextInput
},
data() {
return {
};
},
methods: {
}
};
</script>
Live Examples
See Live Examples.