15 lines
243 B
Vue
15 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>
|