Preface: 1. Vue installation
Method 1: CDN introduction<!--Development environment version, including helpful warning commands--> <script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/vue.js"></script> <!--Generated version, optimized for size and speed--> <script src="https://cdn.jsdelivr.net/npm/[email protected]"></script> Method 2: Direct download and importDevelopment environment: https://vuejs.org/js/vue.js Production environment: https://vuejs.org/js/vue.min.js Method 3: npm installation It is recommended to use # Latest stable version$ npm install vue 2. Basic use To use The sample code is as follows: <div id="app"> {{message}} </div> </body> <script> const app = new Vue({ el: "#app", data: { message: "Beginner Vue" } }) </script> The data in for example: <!--Cannot render here--> <p>{{message}}</p> </body> <script> const app = new Vue({ el: "#app", data: { message: "Beginner Vue" } }) </script> You can also add The sample code is as follows: <div id="app"> <p>{{greet()}}</p> </div> </body> <script> const app = new Vue({ el: "#app", data: { message: "Beginner Vue" }, methods: { greet: function () { return "hello" + this.message } } }) </script> This is the end of this article about Vue installation and usage. For more relevant Vue installation and usage content, please search for previous articles on 123WORDPRESS.COM or continue to browse the following related articles. I hope everyone will support 123WORDPRESS.COM in the future! You may also be interested in:
|
<<: Analysis of the principle of centering elements with CSS
>>: Advantages and disadvantages of conditional comments in IE
Today I made a menu button. When you move the mous...
It is very simple to install Scala environment in...
First: Installation of MySQL Download the MySQL s...
This article shares the specific code of js to ac...
Table of contents Preface Discover the cause Cust...
In Black Duck's 2017 open source survey, 77% ...
The cut command in Linux and Unix is used to cu...
1. Create table statement: CREATE TABLE `employee...
The growth path from a Linux novice to a Linux ma...
The following are its properties: direction Set th...
The team replaced the new frame. All new business...
Table of contents fold (reduce) Using for...of Us...
Table of contents What is Docker Client-side Dock...
MySQL can be set when it is installed, but it see...
1. Replace your .js library file address with the...