Some checks failed
Telegram Mini App Shop Builder / Compute version metadata (push) Has been cancelled
Telegram Mini App Shop Builder / Run Frontend tests (push) Has been cancelled
Telegram Mini App Shop Builder / Run Backend tests (push) Has been cancelled
Telegram Mini App Shop Builder / Run PHP_CodeSniffer (push) Has been cancelled
Telegram Mini App Shop Builder / Build module. (push) Has been cancelled
Telegram Mini App Shop Builder / release (push) Has been cancelled
22 lines
370 B
Vue
22 lines
370 B
Vue
<template>
|
|
<h3 class="product-title text-sm/4">{{ title }}</h3>
|
|
</template>
|
|
|
|
<script setup>
|
|
const props = defineProps({
|
|
title: {
|
|
type: String,
|
|
default: null,
|
|
}
|
|
});
|
|
</script>
|
|
|
|
<style scoped>
|
|
.product-title {
|
|
display: -webkit-box;
|
|
-webkit-box-orient: vertical;
|
|
-webkit-line-clamp: var(--product_list_title_max_lines, 3);
|
|
overflow: hidden;
|
|
}
|
|
</style>
|