Skip to content

Instantly share code, notes, and snippets.

@SvenPam
SvenPam / SDiff.vue
Last active July 4, 2019 09:18
TS Component Example
<template>
<small
v-if="diff !== 0"
:class="previous < current ? 'text-danger' : 'text-success'"
>
£{{ (previous - current) | format(0) }}
<template v-show="lastUpdated !== null">
vs
{{ formatDate(lastUpdated) }}
</template>