vsCode generates vue templates with one click

vsCode generates vue templates with one click

1. Use the shortcut Ctrl + Shift + P to call out the console

2, then enter "snippets" and select

2. Then enter vue,

vs code automatically generates the vue.json file.

3. Change the vue.json file to the following template (you can modify the template content according to your personal needs)

{
      
        "Print to console": {
            "prefix": "vue",
            "body": [
                "<template>",
                " <div">$0</div>",
                "</template>",
                "",
                "<script>",
                "export default {",
                "components: {},",
                " props: {},",
                " data() {",
                " return {",
                " };",
                " },",
                "watch: {},",
                " computed: {},",
                " methods: {}, ",
                " created() {},",
                "mounted() {}",
                "};",
                "</script>",
                "<style lang=\"scss\" scoped>",
                "</style>"
            ],
            "description": "A vue file template"
        }
    }

Then create a new vue file, enter "vue", press the Enter key or Tab key, and the template will be automatically generated:

This is the end of this article about vsCode generating vue templates with one click. For more relevant vsCode generating vue templates, please search for previous articles on 123WORDPRESS.COM or continue to browse the following related articles. I hope you will support 123WORDPRESS.COM in the future!

You may also be interested in:
  • VSCode writes vue project to generate .vue template with one click, and modifies the method of defining other templates

<<:  Install Linux rhel7.3 operating system on virtual machine (specific steps)

>>:  getdata table table data join mysql method

Recommend

Docker renames the image name and TAG operation

When using docker images, images with both REPOSI...

Introduction to who command examples in Linux

About who Displays users logged into the system. ...

XHTML Basic 1.1, a mobile web markup language recommended by W3C

W3C recently released two standards, namely "...

mysql replace part of the field content and mysql replace function replace()

[mysql] replace usage (replace part of the conten...

Docker advanced method of rapid expansion

1. Command method Run the nginx service in the cr...

Introduction to setting up Tomcat to start automatically on Linux system

1. Enter the /etc/init.d directory: cd /etc/init....

Installation process of CentOS8 Linux 8.0.1905 (illustration)

As of now, the latest version of CentOS is CentOS...

Vue implements form data validation example code

Add rules to the el-form form: Define rules in da...

Can CSS be used like this? The art of whimsical gradients

In the previous article - The charm of one line o...

How to run the springboot project in docker

1. Click Terminal below in IDEA and enter mvn cle...