Skip to content

Instantly share code, notes, and snippets.

View juliovt-07's full-sized avatar
🚀
Evoluindo

Júlio César juliovt-07

🚀
Evoluindo
View GitHub Profile
@juliovt-07
juliovt-07 / loading.vue
Last active April 13, 2022 17:20
Componente de Loading
<template>
<svg viewBox="25 25 50 50">
<circle cx="50" cy="50" r="20"></circle>
</svg>
</template>
<style>
svg {
width: 3.75em;
transform-origin: center;
animation: rotate 2s linear infinite;
@juliovt-07
juliovt-07 / formatCurrency.js
Last active April 13, 2022 17:20
Formatação de moeda
const formatCurrency = (value) => {
return value.toLocaleString('pt-BR', {
style: 'currency',
currency: 'BRL'
})
}
// <- formatCurrency(20000)
// -> R$ 20.000,00
@juliovt-07
juliovt-07 / statistics.vue
Last active April 19, 2022 03:23
Componente com Blur
<template>
<div class="statistics">
<div class="item">
<h3>50+</h3>
<p>Desenvolvedores</p>
</div>
<div class="item">
<h3>200+</h3>
<p>Clientes</p>
</div>