Make a Netease Cloud Music with vue.js

Foreword: I have studied VUEJS for some time, but I haven't made anything. I have always liked to use Netease cloud music app, so I made this app. technology stack Vue family barrel (vue vue-router vuex) axios Muse-UI (a Vue2.x-based material design style UI framework) Analysis of Function and Thought ...

Posted by geekette on Mon, 15 Jul 2019 02:33:52 +0200

2-vuejs2.0 Actual: Douban-like app project, creating component header,tabbar routing jump

In the previous chapter, there are children's shoes that mention why not jump by routing?Actually, what I want to say is that this sharing is just beginning. Don't worry!In this section, we'll walk you through creating the header component and tabbar routing jumps. https://segmentfault.com/a/1190000008491055 vue catalog:1-vuej ...

Posted by ChompGator on Sun, 14 Jul 2019 20:06:36 +0200

Video E-commerce Website - Generate token saved in client local Storage

We've already seen that data can be saved on the client (browser) through the local Storage. Review token RESTful api in the framework for quick insight (middle): token authentication RESTful api in the framework for quick insight (below): token settings We have an interface on the back end: http://localhost/yiiserver/web/index.php/tok ...

Posted by warmwind on Thu, 11 Jul 2019 00:52:10 +0200

Using Vue.js to Make Imitated Metronic Advanced Table (1) Static Design

Metronic Advanced Table It's a self-implemented table in the Metonic framework, with the bottom layer being Datatables This tutorial will mainly use Vue to implement the interactive part, Bootstrap to do style library, jQuery to do some user interaction (pop-up window). Used libraries: Vue 2.0, Bootstrap 3, jQuery 2, font-awesome 4, are availa ...

Posted by manmadareddy on Tue, 09 Jul 2019 01:05:27 +0200

(32)Vue template syntax

Template syntax Text: <span>Message: {{ msg }}</span> v-once One-time interpolation, when the data changes, the contents of the interpolation will not be updated <span v-once>This will not change: {{MSG}}</span> v-html directive <p>Using mustaches: {{ rawHtml }}</p> <p>Using v-html direct ...

Posted by dgny06 on Mon, 08 Jul 2019 18:18:08 +0200

Vue2.1.7 Source Learning (I)

The title of the original article is "Source Code Analysis", but later on, I think it is appropriate to use "source code learning". Before I have a thorough grasp of each letter in the source code, "parsing" is a bit of a headline party. It is suggested that before reading this article, it is better to open the sou ...

Posted by skroks609 on Mon, 01 Jul 2019 22:10:35 +0200

vue.js dynamic data binding learning

For the dynamic data binding of vue.js, after reading the source code and blog explanations repeatedly, we can finally understand its implementation, and share the learning results, which is also a record. Full code GitHub address: https://github.com/hanrenguang/Dynamic-data-binding . You can also read this article at README in the warehouse. ...

Posted by mark s on Sat, 29 Jun 2019 23:23:42 +0200

Learn from zepto.js how to trigger DOM events manually

Preface Front-end is very popular in recent years, vue, react, angular frameworks emerge in endlessly, if we do not know a two-way data binding, do not know what is virtual DOM, it may be despised. Behind the heat is often endless impetuosity, learning these advanced and popular libraries or frameworks can make us go faster, but calm down to re ...

Posted by 244863 on Mon, 24 Jun 2019 22:52:38 +0200

Preliminary Understanding and Understanding of vue Source Code

According to the introduction of vue's official website, we can know that Vue is a mvvm framework and is responsive. In order to further understand its connotation, I realized a simple demo of mvvm learning. Below to share with you, welcome to discuss together. 1. The minimum content of mvvm Instruction sets, such as text, model, etc. Data ...

Posted by edcellgavin on Sat, 22 Jun 2019 21:38:02 +0200

vue source code analysis series-compute implementation mechanism

Originally, the response of Vue should be the most important. But there are many articles on the Internet. Before looking at the implementation of computer. I'm sure we need to take a good look at how vue's response is implemented. Or they are basically the same thing. Here we recommend some articles about the response of vue. Simple implementa ...

Posted by Swerve1000 on Thu, 20 Jun 2019 22:54:08 +0200