S
S
squadbrodyaga2021-01-16 17:43:58
Vue.js
squadbrodyaga, 2021-01-16 17:43:58

How to push another component into a component?

Hello, I just started learning Vue and I want to understand how to insert something into a component ...
something like this I see it:

<template>
  <my-input placeholder="Логин">
    <!-- вставляем сюда что нибудь, например иконку -->
  </my-input>
</template>

<script setup>
import MyInput from "./components/Input.vue";
</script>


my-input looks like this:
<template>
  <div class="input">
    <!-- и иконка должна вставится вот сюда -->
    <input type="text" :placeholder="placeholder">
  </div>
</template>

<script setup>
  import { defineProps } from 'vue'
  defineProps({
    placeholder: String
  })
</script>

Answer the question

In order to leave comments, you need to log in

1 answer(s)
A
Alexey Sklyarov, 2021-01-16
@squadbrodyaga

Slot

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question