scinote-web/app/javascript/vue/shared/string_with_ellipsis.vue

34 lines
611 B
Vue
Raw Normal View History

2024-02-23 21:08:51 +08:00
<template>
<div :title="text" class="flex items-center">
<template v-if="text.length <= endCharacters">
<div class="shrink-0">
{{ text }}
</div>
</template>
<template v-else>
<div class="truncate">
{{ text.slice(0, endCharacters * -1) }}
</div>
<div class="shrink-0">
{{ text.slice(text.length - endCharacters) }}
</div>
</template>
2024-02-23 21:08:51 +08:00
</div>
</template>
<script>
export default {
name: 'StringWithEllipsis',
props: {
text: {
type: String,
required: true
},
endCharacters: {
type: Number,
default: 4
}
}
};
</script>