controls

Type: <boolean>
Default: true
Display UI controls for the card's media.
with controls enabled:
  • React
  • Vue
  • Jekyll
  • Vanilla
<template>
  <Microlink 
    url="https://www.youtube.com/watch?v=9P6rdqiybaw" 
    media="video" 
    :controls="true"
  />
</template>
with controls disabled:
  • React
  • Vue
  • Jekyll
  • Vanilla
<template>
  <Microlink 
    url="https://www.youtube.com/watch?v=9P6rdqiybaw" 
    media="video" 
    :controls="false"
  />
</template>