Heim  >  Artikel  >  Entwicklungswerkzeuge  >  Einführung in die schnelle Erstellung von Vue-Vorlagen in vscode

Einführung in die schnelle Erstellung von Vue-Vorlagen in vscode

青灯夜游
青灯夜游nach vorne
2020-10-23 17:34:452680Durchsuche

vscode如何快速搭建vue模板?下面本篇文章给大家介绍一下。有一定的参考价值,有需要的朋友可以参考一下,希望对大家有所帮助。

Einführung in die schnelle Erstellung von Vue-Vorlagen in vscode

相关推荐:《vscode基础教程》、《vue.js教程

文件 -> 首选项 -> 用户代码片段
搜索vue

vue2.x添加下方代码

{

 "Print to console": {

 "prefix": "vue",

 "body": [

 "<!-- $0 -->",

 "<template>",

 "  <p></p>",

 "</template>",

 "",

 "<script>",

 "export default {",

 "  data () {",

 "    return {",

 "    };",

 "  },",

 "",

 "  components: {},",

 "",

 "  computed: {},",

 "",

 "  mounted: {},",

 "",

 "  methods: {}",

 "}",

 "",

 "</script>",

 "<style lang=&#39;scss&#39; scoped>",

 "</style>"

 ],

 "description": "Log output to console"

 }

 }

vue3.x添加下方代码

{
"Print to console": {

 "prefix": "vue3",

 "body": [

 "<!-- $0 -->",

 "<template>",

 "  <p></p>",

 "</template>",

 "",

 "<script>",

 "import { computed, reactive, ref, watch, onMounted,onUpdate,onUnmounted} from &#39;vue&#39;;",

 "export default {",

 "setup(){",

 "//类mounted",

 "onMounted(()=>{",

 "",

 "})",

 "//相当于updated",

 "onUpdate(()=>{",

 "",

 "})",

 "//相当于destroyen",

 "onUnmounted(()=>{",

 "",

 "})",

 "return {}",

 "}",

 "}",

 "",

 "</script>",

 "<style lang=&#39;scss&#39; scoped>",

 "</style>"

 ],

 "description": "Log output to console"

 }
 }

新建.vue文件后   

Einführung in die schnelle Erstellung von Vue-Vorlagen in vscode

相关推荐:

2020年前端vue面试题大汇总(附答案)

vue教程推荐:2020最新的5个vue.js视频教程精选

更多编程相关知识,请访问:编程入门!!

Das obige ist der detaillierte Inhalt vonEinführung in die schnelle Erstellung von Vue-Vorlagen in vscode. Für weitere Informationen folgen Sie bitte anderen verwandten Artikeln auf der PHP chinesischen Website!

Stellungnahme:
Dieser Artikel ist reproduziert unter:segmentfault.com. Bei Verstößen wenden Sie sich bitte an admin@php.cn löschen