Last active
September 5, 2021 09:53
-
-
Save JimYaaa/61b790725ad40fa0f173311ad69366c6 to your computer and use it in GitHub Desktop.
Vue Recursive Components
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<template> | |
<div> | |
<recursive-component></recursive-component> | |
</div> | |
</template> | |
<script lang="ts"> | |
import { defineComponent } from 'vue' | |
export default defineComponent({ | |
name: 'RecursiveComponent' | |
setup () { | |
return {} | |
} | |
}) | |
</script> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment