awesome-swiper.js
1.45 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
import Vue from 'vue';
async function getComponent() {
return [
await import(/* webpackChunkName: "swiper" */'vue-awesome-swiper/dist/ssr'),
await import(/* webpackChunkName: "swiper" */'swiper/dist/css/swiper.css')];
}
export default ['AwesomeSwiper', function AwesomeSwiper() {
return {
component: new Promise(async (resolve) => {
if (process.env.VUE_ENV === 'client') {
Vue.use((await getComponent())[0]);
}
resolve({
props: {
options: {
type: Object,
default() {
return {};
}
},
name: String,
regSuccess: Function
},
mounted() {
this.regSuccess && this.regSuccess(this[this.name]);
if (this[this.name] && this.$parent) { // TODO remove
this.$parent[this.name] = this[this.name];
}
},
render: function(h) {
return h('div', {
directives: [{
name: 'swiper',
arg: this.name,
value: this.options
}]
}, this.$slots.default);
}
});
}),
};
}];