Vue.js – ScreenshotMaker part 2 (using Jade with Vue.js, call variables)

Each project needs evolution. After a comment by Peter van Meijgaard (https://github.com/petervmeijgaard) in previous post (https://fedojo.com/vue-js-first-look-and-test/) Ive made a few changes. Changes in variables Previously: makeScreenshot: function(e) { this.$set('form', false); this.$set('inprogresss', true); Vue.http.get('http://localhost:8888/screenshot?url='+this.url).then((response) => {…

Angular 2 – Pipes (TypeError: Cannot read property ‘length’ of undefined)

Ive been trying to build simple filtering in application -> Show-ur-bugs (https://github.com/fedojo/show-ur-bugs). Let me introduce the error environment firstly: project-list.component.ts import 'rxjs/add/operator/map'; import {Component, OnInit} from '@angular/core'; import {ProjectService} from "../../shared"; import {ProjectListSingleComponent} from "./project/project-list-single.component"; import…