15 lines
253 B
Vue
15 lines
253 B
Vue
<script>
|
|
import { getExperimentVariant } from '../utils';
|
|
|
|
export default {
|
|
props: {
|
|
name: {
|
|
type: String,
|
|
required: true,
|
|
},
|
|
},
|
|
render() {
|
|
return this.$scopedSlots?.[getExperimentVariant(this.name)]?.();
|
|
},
|
|
};
|
|
</script>
|