Answers for "call a component inside another component vue"

0

call a component inside another component vue

<template>
  <p>Canvas</p>
  <Pixel />
</template>

<script>
import Pixel from './Pixel'

export default {
  name: 'App',
  components: {
    Pixel
  }
}
</script>
Posted by: Guest on April-04-2022

Code answers related to "call a component inside another component vue"

Browse Popular Code Answers by Language