Skip to content
/ vue-lds Public

Salesforce's Lightning Design System for Vue.js.

License

Notifications You must be signed in to change notification settings

fb-inc/vue-lds

Repository files navigation

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>',
})