Skip to content

Commit

Permalink
fix: improve UI
Browse files Browse the repository at this point in the history
  • Loading branch information
crsten committed Feb 24, 2022
1 parent 7859c3b commit c89a74e
Show file tree
Hide file tree
Showing 6 changed files with 7,351 additions and 6,120 deletions.
3 changes: 3 additions & 0 deletions .releaserc
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"ci": false
}
6 changes: 3 additions & 3 deletions index.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,15 @@ import StepperComponent from './src/component.vue'

const Options = {
icons: {
breadcrumb: ['fas', 'long-arrow-alt-right'],
breadcrumb: ['fas', 'angle-right'],
},
}

const install = Vue => {
const install = (Vue) => {
Vue.component('stepper-component', StepperComponent)
}

const setup = options => {
const setup = (options) => {
for (let key in options) {
if (!(key in Options)) return
Options[key] = options[key]
Expand Down
Loading

0 comments on commit c89a74e

Please sign in to comment.