muted

Type: <boolean>
Default: true
Specifies if the media should be muted.
with muted enabled:
  • React
  • Vue
  • Jekyll
  • Vanilla
<template>
  <Microlink 
    url="https://www.youtube.com/watch?v=9P6rdqiybaw" 
    media="video" 
    :auto-play="false" 
    :muted="true"
  />
</template>
with muted disabled:
  • React
  • Vue
  • Jekyll
  • Vanilla
<template>
  <Microlink 
    url="https://www.youtube.com/watch?v=9P6rdqiybaw" 
    media="video" 
    :auto-play="false" 
    :muted="false"
  />
</template>