Skip to content

seejwy/skateui-old

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Skate UI

Beautiful and easy to use HTML elements and custom components that are semantic and customizable for VueJS.

Table of Contents

Getting Started

To install Skate UI in your Vue project using npm:
npm install skateui

Vue 2

In the main.js of your project,

import Vue from 'vue'
import App from './App.vue'

// import SkateUI and use it
import SkateUI from 'skateui'

Vue.use(SkateUI);

new Vue({
  render: h => h(App)
}).$mount('#app')

Vue 3

In the main.js of your project,

import { createApp } from 'vue'
import App from './App.vue'

// import SkateUI and use it
import SkateUI from 'skateui'

let app = createApp(App);

app.use(SkateUI);
app.mount('#app')

Documentation

You can find our latest documentation on skateui.com.

Bugs and Feature Requests

Spot a bug or have a feature request? Open an issue with us

License

Code released under the MIT License.