export const carousel = { computed: { isIE () { return /(MSIE)|(Trident)/.test(this.$store.state.option.userAgent) }, effect () { return this.isIE ? 'slide' : 'fade' } } }