vue stage 2

filter format <div id="box"> <p>{{Data entering the filter data| Filter name('Parameter 1','Parameter 2') }}</p> Vue.filter('Filter name',function (input data data,Parameter 1,Parameter 2) { return pass; }) <body> <div id="box"> <p ...

Posted by The Wise One on Sat, 13 Jun 2020 01:49:09 -0700

[Abp vNext microservice practice] - Business Development

In the previous several articles, we introduced abp vNext microservice framework, development environment construction and access to the front-end framework of vue element admin respectively. After the basic functions of user role management are implemented in vue element admin, we can start business development. This article will introduce how ...

Posted by lou28 on Fri, 12 Jun 2020 03:15:14 -0700

Vue video player Vue video plug in

introduce vue video player is the vue version of videojs video.js Official website: https://videojs.com/ Refer to the official website: Video.js Is a web video player built from scratch for the HTML5 world. It supports HTML5 video and modern streaming formats, and it supports video playback on desktop ...

Posted by chiprivers on Thu, 11 Jun 2020 21:27:52 -0700

this/call/apply/bind (ten thousand words)

preface Hello, everyone. I'm zha'er ๐Ÿ‘ฆ Every day ๐Ÿ’ช , you can get a promotion and a raise ๐Ÿ’ฐ When general manager becomes CEO, marry Bai Fumei and go to the top of life ๐Ÿ—ป I'm a little excited ๐Ÿ˜Ž. This is my 13th issue A kind of , hope to be able to explain every knowledge point clearly, (of course, if you don't know which one, you can discuss ...

Posted by robotta1530 on Wed, 10 Jun 2020 23:31:30 -0700

JS design mode (to be sorted out)

Interview and knocking, advanced stepping stone, design with mode, code more reasonable Explanation and application of Javascript Design Pattern System (exercise code) Chapter 2 object oriented 2-1 build development environment 2-2 what is object-oriented 2-3 object oriented inheritance 2-4 object oriented encapsulation 2-5 obje ...

Posted by dandaman2007 on Tue, 09 Jun 2020 23:30:28 -0700

Wechat authentication authorization detailed code example

Wechat authentication authorization detailed code example background The company has an H5 page that doesn't display pictures after sharing to wechat, and the style is different from the sharing cards of other applications. Later it was found that the reason is that the unified sharing interface of ...

Posted by axo on Tue, 09 Jun 2020 22:29:42 -0700

Source Code Interpretation of vue-element-admin--Project Startup Process

vue-element-admin Is an excellent front-end framework, using the latest front-end technology, built-in (Vue-i18) Internationalized Solutions, Dynamic Routing (Vue Route) , State Management (Vuex) The scheme such as these makes the whole frame structure very clear.What's more, the framework also has Type ...

Posted by fekaduw on Tue, 09 Jun 2020 10:00:47 -0700

Using Vuecli (Vue scaffolding) to quickly create Vue projects

1, What is Vue cli vue cli is an official scaffold for building single page applications At present, Vuecli feels like a new project tool integrated in Idea, through which I can quickly create a project file with some basic functions. The description of scaffold is very similar. But this thing is used on the command line. ย  2, Install Vu ...

Posted by devang23 on Mon, 08 Jun 2020 22:02:13 -0700

How does the diff algorithm of Vue work? This article teaches you

preface This paper aims at the main logic and key details of diff algorithm in vue. Starting from a simple demo: p tag renders an array of items <div id="demo"> <p v-for="item in items" :key="item">{{ item }}</p> </div> <script src="../vue-source/dist/vue.js"></script> <script> const app = new ...

Posted by feri_soft on Mon, 08 Jun 2020 19:53:08 -0700

Component creation and value transfer of react 16 tutorial

assembly Create component There are three types of components: a stateful component, a stateless component and a stateful component. The stateful component will be described later Stateful component As the name implies, stateful component has its own state and life cycle, and the positioning of st ...

Posted by boonika on Sun, 07 Jun 2020 20:26:13 -0700