keanu-weblite/src/components/VoiceRecorderLock.vue
2021-02-23 22:07:57 +01:00

28 lines
No EOL
449 B
Vue

<template>
<div>
<div
:class="{ 'voice-recorder-lock': true, 'locked': isLocked }"
ref="vr_lock"
>
<div :class="{ 'thumb': true, 'locked': isLocked }" />
</div>
</div>
</template>
<script>
export default {
name: "VoiceRecorderLock",
props: {
isLocked: {
type: Boolean,
default: function () {
return false;
},
},
},
};
</script>
<style lang="scss">
@import "@/assets/css/chat.scss";
</style>