Vue template configuration and webstorm code format specification settings

Vue template configuration and webstorm code format specification settings

1. Compiler code format specification settings

Usually when we write code, the code indentation is 4 spaces, but in the front end, according to global voting statistics, it is recommended to use 2 spaces for code indentation.

First, open the settings in webstorm . If you are using mac , use command + , shortcut to go to Editor-->Code Style-->HTML and change the values ​​of Tab size and Indent to 2. Similarly, change them to 2 in JavaScript .

2. Vue template configuration

When we use html to practice vue , if we don't want to create a vue instance object every time, we can configure a template in html and directly use the vue tag to introduce the code directly.

We open the settings in webstorm , go to Editor-->Live Templates , select vue , and click the +

Select Live Template , then write vue in Abbrevition and the template text content that needs to be configured in Template text .

Finally, on the current page, where there is a !, click Define

Then check HTML and click ok to complete.

To achieve the final effect, we directly enter vue in HTML , and then press tab , and we will immediately see the template code we just configured.


This is the end of this article about vue template configuration and webstorm code format specification settings. For more related vue webstorm 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:
  • How to use Webstorm and Chrome to debug Vue projects
  • WebStorm cannot correctly identify the solution of Vue3 combined API
  • How to run a Vue project with Idea or webstorm (detailed steps)
  • Set resolves.alias: ''@'' path based on vue project and adapt to webstorm
  • A fool-proof tutorial on how to build a vue-cli scaffold in webstorm
  • Solve the problem that the Webpack alias cannot be used in Vue cli scaffolding projects under Idea and WebStorm
  • How to initialize the project with webstorm+vue
  • vue: How to set up fast compilation and running in WebStorm
  • Detailed explanation of Vue syntax support in WebStorm
  • Solution to es6 syntax errors in webstorm and .vue

<<:  What are Web Slices?

>>:  CSS to achieve horizontal lines on both sides of the middle text

Recommend

Navicat Premium operates MySQL database (executes sql statements)

1. Introduction to Navicat 1. What is Navicat? Na...

CSS3 realizes the animation of shuttle starry sky

Result: html <canvas id="starfield"&...

How to enable or disable SSH for a specific user or user group in Linux

Due to your company standards, you may only allow...

Excel export always fails in docker environment

Excel export always fails in the docker environme...

An article to show you how to create and use Vue components

Table of contents 1. What is a component? 2. Crea...

Detailed explanation of the JavaScript timer principle

Table of contents 1. setTimeout() timer 2. Stop t...

Meta declaration annotation steps

Meta declaration annotation steps: 1. Sort out all...

Detailed explanation of MySQL combined index and leftmost matching principle

Preface I have seen many articles about the leftm...

Detailed tutorial on installing Python 3.8.1 on Linux

This example takes the installation of Python 3.8...

Display special symbols in HTML (with special character correspondence table)

Problem Reproduction When using HTML for editing,...

Docker container orchestration implementation process analysis

In actual development or production environments,...

Detailed example of removing duplicate data in MySQL

Detailed example of removing duplicate data in My...

XHTML Web Page Tutorial

This article is mainly to let beginners understan...

CSS3 to achieve floating cloud animation

Operation effect html <head> <meta chars...

Two methods of MySql comma concatenation string query

The following two functions are used in the same ...