Skip to content

Instantly share code, notes, and snippets.

@mfissehaye
Created February 10, 2022 13:00
Show Gist options
  • Save mfissehaye/d977239ecb04840ddf1ab7daf5b2e08d to your computer and use it in GitHub Desktop.
Save mfissehaye/d977239ecb04840ddf1ab7daf5b2e08d to your computer and use it in GitHub Desktop.
Component Switcher Vue
<template>
<div :is="`Component${componentLabel}`"></div>
</template>
<script>
export default {
props: {
componentLabel: {
type: String,
validator: function (value) {
return ['A', 'B', 'C'].indexOf(value) !== -1
}
}
}
}
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment