Hugo's Guide to Creating a Personal Blog

Recently I decided to build a personal blog site and compare hexo with hugo Hugo Static Page Generation Engine with theme tranquilpeak , using the comment system Valine .The purpose of this article is to record in detail the process of creating a personal blog. Dead work Git, Golang environment GitHub Account or Gitee Account (Blog with free ...

Added by jstarkweather on Fri, 07 Jun 2019 20:13:00 +0300

Hand-in-hand teaches you a vue2.0 bullet window assembly

Hand-in-hand teaches you a vue2.0 bullet window assembly Before you start, you need to know the pre-knowledge of developing vue plug-ins. It's recommended that you take a look at it first. Introduction of plug-ins for vue official website Preview address http://haogewudi.me/kiko/inde... Source address https://github.com/rascalHao/... Construc ...

Added by hyeteck on Fri, 07 Jun 2019 00:40:56 +0300

Vue Template Content

Previous remarks If you only use Vue's most basic declarative rendering capabilities, you can use Vue as a template engine.This article details the Vue template content   Summary Vue.js uses HTML-based template syntax, which allows DOM to be declaratively bound to the data of the underlying Vue instance.All Vue.js templates are legitimate H ...

Added by radarhill on Thu, 06 Jun 2019 20:03:18 +0300

vue calculation properties

Computing attributes Expressions within templates are convenient, but they are actually only used for simple operations.Placing too much logic in a template can overweight and make it difficult to maintain.For example: <div id="example"> {{ message.split('').reverse().join('') }} </div> In this case, the template is no longer sim ...

Added by sugarat on Thu, 06 Jun 2019 19:06:20 +0300

Vue event handling

Previous remarks The way Vue events are monitored seems to run counter to the traditional idea of separation of concerns. In fact, all Vue.js event handling methods and expressions are strictly bound to the ViewModel of the current view, which does not cause maintenance difficulties. Using v-on has the following advantages: 1. Glancing at HTM ...

Added by JBS103 on Thu, 06 Jun 2019 02:54:43 +0300

Front-end Development Start to Practice: Calculate the exposure time (residence time) of each module in a page

Products want to see the active pages put out. Users are more interested in what information is on their pages, and they are not interested in what information is on their pages at all. => Calculate the residence time of each module in the page The first time I heard this demand, my brain started to run crazily, and then I thought of plan ...

Added by cristal777 on Tue, 04 Jun 2019 06:01:24 +0300

Direct access between instances of Vue components

Front words Sometimes a parent component is required to access a child component, a child component to access a parent component, or a child component to access the root component. In the component instance, Vue provides the corresponding properties, including $parent, $children, $refs and $root, which are mounted on the component's this. This ...

Added by The Little Guy on Sun, 02 Jun 2019 22:45:25 +0300

Better data flow management framework: Vanex released~

vanex The React store management framework based on mobx & mobx-react provides a simple and fast development paradigm. The mode of use is similar to dva, but it is simpler and more efficient than dva. gitlab address: http://gitlab.alibaba-inc.com... example address: http://gitlab.alibaba-inc.com... Characteristic Three API s to fix the ...

Added by iainr on Sun, 02 Jun 2019 20:59:16 +0300

VueJS Source Learning: Project Structure & Directory

The source learning notes of this project are based on Vue version 1.0.9, which is also the earliest tag version. The reason for choosing this version is that it is the most original version without too much functional expansion, which is conducive to a better view of the original skeleton and context of Vue and the author's original ideas. Com ...

Added by john_zakaria on Wed, 29 May 2019 21:29:04 +0300

iview-based routing control

router Control Requirements for 1 iview Recently, when writing projects using iview framework, we encountered some problems in routing control and some experiences in solving them, so we record them here. Each project has different control requirements for tags (tabs). Therefore, the control requirements for tags (tabs) of the projects describe ...

Added by chugger93 on Wed, 29 May 2019 14:56:22 +0300