Files
salvato.newfreeplanet/src/components/CBarCode/CBarCode.vue

16 lines
376 B
Vue
Raw Normal View History

2024-11-19 19:19:14 +01:00
<template>
<div class="row barcode-container justify-center text-center">
<div class="text-center" :style="`font-size: ${fontsize}px`">
{{ text }}
</div>
<img :style="`width:${width}px !important;`" :id="`C${value}`"/>
2024-11-19 19:19:14 +01:00
</div>
</template>
<script lang="ts" src="./CBarCode.ts">
</script>
<style lang="scss" scoped>
@import './CBarCode.scss';
</style>