Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/app/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ export default {
}

// vuex store
if (!store) appOptions.store = store
if (store) appOptions.store = store

const app = new Vue(appOptions).$mount('von-app')

Expand Down
2 changes: 1 addition & 1 deletion src/components/checkbox/index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<hairline-top v-if="i > 0"></hairline-top>

<input type="checkbox" :name="checkboxName" :id="checkboxName + '-' + i" v-model="v" :value="i">
<span v-text="option"></span>
<span v-html="option"></span>
<i
:class="{
'icon ion-ios-checkmark-empty assertive': v.indexOf(i) > -1 && theme == 'assertive',
Expand Down
2 changes: 1 addition & 1 deletion src/components/radio/index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
}"
>
</i>
<span v-text="option"></span>
<span v-html="option"></span>

<hairline-bottom v-if="i < options.length - 1"></hairline-bottom>
</div>
Expand Down
3 changes: 2 additions & 1 deletion src/install.js
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,8 @@ export default function install (Vue, options) {
Vue.component('button-bar', ButtonBar)
Vue.component('scalable', Scalable)

// Advanced ComponentsVue.component('swiper', Swiper)
// Advanced Components
Vue.component('swiper', Swiper)
Vue.component('swiper-item', SwiperItem)
Vue.component('scroll', Scroll)
Vue.component('cascade', Cascade)
Expand Down