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