Skip to content

Latest commit

 

History

History
31 lines (21 loc) · 388 Bytes

README.md

File metadata and controls

31 lines (21 loc) · 388 Bytes

Salesforce's Lightning Design System for Vue.js.

Installation

npm

npm i vue-lds

Yarn

yarn add vue-lds

Usage

import Vue from 'vue'
import VueLDS from 'vue-lds'

Vue.use(VueLDS)

new Vue({
  el: '#app',
  template: '<vlds-button type="neutral" icon="utility/edit">Button</vlds-button>',
})