1
0
Fork 0
mirror of https://gitlab.com/bramw/baserow.git synced 2025-02-19 11:23:52 +00:00
bramw_baserow/web-frontend/modules/database/components/card/RowCardFieldPassword.vue
2024-02-28 19:06:11 +00:00

11 lines
184 B
Vue

<template functional>
<div class="card-text">
{{ props.value ? '••••••••••' : '' }}
</div>
</template>
<script>
export default {
height: 16,
}
</script>