Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.
<script>
import { getExperimentVariant } from '../utils';
export default {
props: {
name: {
type: String,
required: true,
},
render() {
return this.$scopedSlots?.[getExperimentVariant(this.name)]?.();
};
</script>