Dynamic Components
2022-07-11 월
이슈
Dynamic Components
<template>
<component
:is="componentType"
:to="href"
...
</component>
</template>
<script lang="ts">
import Vue from "vue";
export default Vue.extend({
props: {
href: {
type: String,
},
...
},
computed: {
componentType() {
return this.href ? "router-link" : "button";
},
},
});
</script>Last updated