Giter Site home page Giter Site logo

vuejs-playlist's Introduction

cli-project

A Vue.js project

Build Setup

# install dependencies
npm install

# serve with hot reload at localhost:8080
npm run dev

# build for production with minification
npm run build

For detailed explanation on how things work, consult the docs for vue-loader.

vuejs-playlist's People

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

vuejs-playlist's Issues

lesson 12

why does lesson 12 has no content?

Update and Delete

Hi,
I followed your tutorial, however I hit a wall at the completion of it. I have not been able to figure out how to update and delete blogs.

search bar

in the videos that you put in youtube there was nothing about that search box in top of the page.
and thats not working!

Lesson 32 this.$http is undefined

so I got an error when clicking the button:
image

even after I copied your code 100%, still I get the error, I've installed vue-resource and used Vue.use

when I try to console.log(this.$http) I get undefined

A style guide notice?

First off, followed the YouTube tutorial. Great stuff.

I started the tutorial after reading the Vue essentials guide and I have a little suggestion - Point the viewers to the Vue style guide. This is because I noticed (only at a few places) breakage of https://vuejs.org/v2/style-guide/#Multi-word-component-names-essential

I'm aware that this isn't a major issue but I believe it's still a good idea to let learners know about the Vue style guide.

Lesson 32 - CORS issue

I wanted to learn Vue 2 to contribute to a project. I'm following this series and got stuck with a CORS policy issue on lesson 32.

I use npm create vue@2 to start a project.

I get the following error when trying the Post Blog button.

image

Can anyone help me with this?

Is Shaun okay?

Hi Shaun. Your Github has been pretty dormant. Are you good?

Scoping Issue - Lesson 36

Problem:
I think there is a scoping issue in the filteredBlogs() method inside the showBlog.vue component.

computed: {
        filteredBlogs: function(){
            return this.blogs.filter((blog) => {
                return blog.title.match(this.search);
            });
        }
    }

the issue comes from this.search.

Proposed Solution:

computed: {
    filteredBlogs(){
      var that = this;
      return this.blogs.filter(function(blog){
        return blog.title.match(that.search);
      });
    }
  }

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.