Skip to content
Advertisement

How to use slots in the HTML with Single File Components

I want to use slots in Vue to create a dynamic modal component.

I already tried a lot of tutorials of Vue / slots, but none of them is exactly what i’m looking for.

This is a piece of my modal.vue:

JavaScript

This is my javascript compiled file:

JavaScript

This is piece of my HTML file:

JavaScript

I was expecting that all elements present inside #modal (#dynamic-input in this case), were inserted into the slot named modal-body, inside my Vue element. Is it possible to do it? Am i missing something?

Advertisement

Answer

Check what version of Vue you are using. The named slot syntax changed in 2.6.0. Consider the differences below. One uses render functions and the other template Strings.

Vue@2.6.10

JavaScript
JavaScript

Vue@2.5.22

JavaScript
JavaScript
User contributions licensed under: CC BY-SA
2 People found this is helpful
Advertisement