Create and publish your own Vue UI component library

Create and publish your own Vue UI component library Preface When using Vue for daily development, we often use some open source UI libraries, such as Element-UI, Vuetify, etc. These libraries can be easily introduced into our current project with a single line of commands: npm install vuetify // or yarn add vuetify Bu ...

Posted by mmoranuk on Thu, 09 May 2019 13:26:38 -0700

vue function configuration item watch and function $watch source sharing

Principle of Vue Two-way List     Everyone knows that Vue uses the MVVM design mode, uses data-driven to achieve bidirectional binding. If you do not understand the principle of bidirectional binding, you need to supplement the knowledge of bidirectional binding first. In the watch process, you will use the Vue's bidirectional list principle, s ...

Posted by sasi on Thu, 09 May 2019 13:18:38 -0700

Front Tips: Create and publish your own Vue UI component library

Create and publish your own Vue UI component library Preface When using Vue for daily development, we often use some open source UI libraries, such as Element-UI, Vuetify, etc. These libraries can be easily introduced into our current project with a single line of commands: npm install vuetify // or yarn add vuetify But what happens when we de ...

Posted by fredfish666 on Wed, 08 May 2019 12:27:38 -0700

Front-end introduction (vue picture loading framework finished)

Foreword: 2018 has passed half of the year, and I don't feel anything bad in this life year. Every day is still very happy. I thank my friends for their company and gratitude!!! I haven't been home for more than half a year. Recently, I sent a video with Ma Ma. Compared with the New Year, my sister grew 10 cm, Ma was 10 kg thin ...

Posted by senojeel on Wed, 08 May 2019 11:42:39 -0700

stylus introductory learning notes

Learning about vue, some people recommend stylus as a css preprocessor. Before that, I just stayed to hear about stylus, but I didn't actually operate it. Now it's time to learn; if it's less, sass and other css precompilers, learning stylus is so easy! Sources of learning: Zhang Xinxu's personal blog, this is a css industry b ...

Posted by kanetan on Wed, 08 May 2019 10:00:38 -0700

Three Ways of Communication between Vue Components

Recent reading Liang Dian's book Vue.js Actual Warfare, I feel quite fruitful, so I hereby record some practical skills of price comparison. Component is the core design idea of MVVM framework. Componentization of each function point is more conducive to reuse in the project. It is similar to the encapsulation of one of the three major features ...

Posted by darktimesrpg on Wed, 08 May 2019 06:21:40 -0700

Hand in Hand to Learn VUE: Second-tier Component Development and Common Global api

Video tutorial Please move because you don't support video links https://www.henrongyi.top What can you learn? Of course, the second video is a little more difficult than the first one. If the previous content has not been digested, we suggest that you continue to digest the previous content, and then look at the next part. This part is the co ...

Posted by greatstar00 on Tue, 07 May 2019 17:35:39 -0700

Build a simple vue development environment based on Web pack from scratch

It's 8102. Now I'm going to talk about the configuration of webpack. Well, it's a bit late. Moreover, the project generated based on vue-cli or create-react-app has already configured webpack for us with one key, which does not seem to require our in-depth understanding. However, it is necessary to build a simple development e ...

Posted by ChetUbetcha on Sun, 05 May 2019 22:45:38 -0700

Server pre-rendered Nuxt - (Crawl Point)

Nuxt is a more common solution to solve SEO. As Nuxt also has many pits, when breaking through a small technology point, there is a great sense of accomplishment, which really makes me painful and happy during this time.Here we make a summary and summary of the pits that we have traveled according to our individual learning situation. Nuxt Deve ...

Posted by onlinegs on Sun, 05 May 2019 16:40:38 -0700

Vue source parsing: What happens behind the creation of a Vue program

Main Outline: Viewing the Global Configuration of Vue.config from the initGlobal API Method Searching for the Origin of the Constructive Function of Ancestor-Vue Let's start with the most common vue code demo <div id="app"> {{ message }} </div> // js var vm = new Vue({ el: '#app', data: { message: 'hello vue' } }) A V ...

Posted by sean14592 on Sat, 04 May 2019 19:50:37 -0700