Closed belvederef closed 4 years ago
The example snippet contains
<template slot-scope="{ isRecording, startRecording, stopRecording, deleteRecording }">
However since slot-scope is missing a colon the functions are not detected by Vue. I had to change it to :slot-scope.
slot-scope
:slot-scope
Of course, thanks!
The example snippet contains
However since
slot-scope
is missing a colon the functions are not detected by Vue. I had to change it to:slot-scope
.