BY: Edd Yerburgh
Slides: https://slides.com/eddyerburgh/testing-a-vuex-store
Twitter: https://twitter.com/EddYerburgh
By: Diana Rodriguez
BY: Edd Yerburgh
Slides: https://slides.com/eddyerburgh/testing-a-vuex-store
Twitter: https://twitter.com/EddYerburgh
By: Diana Rodriguez
const prefix = process.env.PREFIX | |
const nodeEnv = process.env.NODE_ENV | |
let logCounter = 0 | |
let errorCounter = 0 | |
let fatalCounter = 0 | |
let warnCounter = 0 | |
export const vLogger = { | |
install (Vue, options) { |
<template> | |
<div> | |
<v-card width="100%"> | |
<v-card-title> | |
<h1>{{name}}</h1> | |
<v-spacer></v-spacer> | |
<v-text-field | |
append-icon="search" | |
label="Pesquisar" |
/* | |
In the node.js intro tutorial (http://nodejs.org/), they show a basic tcp | |
server, but for some reason omit a client connecting to it. I added an | |
example at the bottom. | |
Save the following server in example.js: | |
*/ | |
var net = require('net'); |
<html> | |
<head> | |
<style> | |
.row div { | |
height: 8px; | |
display: inline-block; | |
width: 8px; | |
} | |
.row div.active { | |
background-color: red; |