This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
html { | |
position: relative; | |
min-height: 100%; | |
body { | |
/* Margin bottom by footer height */ | |
padding-top: 60px; | |
> .container { | |
padding: 60px 15px 0; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<template> | |
<div> | |
<h1>Essa div é obrigatória</h1> | |
<p>{{ msg }}</p> | |
</div> | |
</template> | |
<script> | |
export default { | |
name: "component-name", #nem sempre obrigatório | |
data () { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<template> | |
<nav class="navbar navbar-inverse navbar-fixed-top"> | |
<div class="container"> | |
<!-- Aqui ficará nosso componente nav-brand !--> | |
<div class="navbar-collapse collapse" id="navbar-main"> | |
<!-- Aqui ficará nav-left e nav-right !--> | |
</div> | |
</div> | |
</nav> | |
</template> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Copy to clipboard | |
copyToClipboard: function() { | |
var element = this; | |
var content = $(element).data('copy'); | |
// creating new textarea element and giveing it id 't' | |
var t = document.createElement('textarea'); | |
t.id = 't'; | |
// Optional step to make less noise in the page, if any! |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$estadosBrasileiros = [ | |
'AC'=>'Acre', | |
'AL'=>'Alagoas', | |
'AP'=>'Amapá', | |
'AM'=>'Amazonas', | |
'BA'=>'Bahia', | |
'CE'=>'Ceará', | |
'DF'=>'Distrito Federal', | |
'ES'=>'Espírito Santo', | |
'GO'=>'Goiás', |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[ | |
{ | |
"id" : 1, | |
"name" : "Calça Jeans Masculina", | |
"description" : "Calça jeans rajada, sizes P M G GG", | |
"price" : 89.90, | |
"amount_off" : 24, | |
"price_off" : 39.99, | |
"image" : "calca-jeans.jpg", | |
"stock" : 100 |