- caaloghi, categorie
This commit is contained in:
25
src/components/CPrice/CPrice.vue
Executable file
25
src/components/CPrice/CPrice.vue
Executable file
@@ -0,0 +1,25 @@
|
||||
<template>
|
||||
<span class="a-price" data-a-size="l" data-a-color="base">
|
||||
|
||||
<span aria-hidden="true" v-if="!!real_price">
|
||||
<span class="a-price-whole">{{ tools.getIntPart(real_price) }}</span>
|
||||
<span class="a-price-decimal">,</span>
|
||||
<span class="a-price-fraction">{{
|
||||
tools.getDecPart2Digit(real_price)
|
||||
}}</span>
|
||||
<span class="a-price-symbol">€</span>
|
||||
</span>
|
||||
|
||||
</span>
|
||||
|
||||
<span v-if="!!sale_price && !bold" :class="sale_price ? 'prod_off_price' : ''"
|
||||
>{{ price ? price.toFixed(2) : 0 }} €
|
||||
</span>
|
||||
</template>
|
||||
|
||||
<script lang="ts" src="./CPrice.ts">
|
||||
</script>
|
||||
|
||||
<style lang="scss" scoped>
|
||||
@import './CPrice.scss';
|
||||
</style>
|
||||
Reference in New Issue
Block a user