這篇文章給大家分享的是有關(guān)使用VSCode搭建vue模板的示例的內(nèi)容。小編覺得挺實用的,因此分享給大家做個參考。一起跟隨小編過來看看吧。
創(chuàng)新互聯(lián)主營西安網(wǎng)站建設(shè)的網(wǎng)絡(luò)公司,主營網(wǎng)站建設(shè)方案,APP應(yīng)用開發(fā),西安h5小程序設(shè)計搭建,西安網(wǎng)站營銷推廣歡迎西安等地區(qū)企業(yè)咨詢VSCode快速搭建vue模板
文件 -> 選項 -> 用戶代碼片段
搜索vue
vue2.x添加下方代碼
{ "Print to console": { "prefix": "vue", "body": [ "<!-- $0 -->", "<template>", " <div></div>", "</template>", "", "<script>", "export default {", " data () {", " return {", " };", " },", "", " components: {},", "", " computed: {},", "", " mounted: {},", "", " methods: {}", "}", "", "</script>", "<style scoped>", "</style>" ], "description": "Log output to console" } }
vue3.x添加下方代碼
{ "Print to console": { "prefix": "vue3", "body": [ "<!-- $0 -->", "<template>", " <div></div>", "</template>", "", "<script>", "import { computed, reactive, ref, watch, onMounted,onUpdate,onUnmounted} from 'vue';", "export default {", "setup(){", "//類mounted", "onMounted(()=>{", "", "})", "//相當(dāng)于updated", "onUpdate(()=>{", "", "})", "//相當(dāng)于destroyen", "onUnmounted(()=>{", "", "})", "return {}", "}", "}", "", "</script>", "<style scoped>", "</style>" ], "description": "Log output to console" } }
新建.vue文件后:
感謝各位的閱讀!關(guān)于使用VSCode搭建vue模板的示例就分享到這里了,希望以上內(nèi)容可以對大家有一定的幫助,讓大家可以學(xué)到更多知識。如果覺得文章不錯,可以把它分享出去讓更多的人看到吧!
文章題目:使用VSCode搭建vue模板的示例-創(chuàng)新互聯(lián)
當(dāng)前鏈接:http://vcdvsql.cn/article2/hogic.html
成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供電子商務(wù)、定制網(wǎng)站、手機網(wǎng)站建設(shè)、建站公司、外貿(mào)建站、自適應(yīng)網(wǎng)站
聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請盡快告知,我們將會在第一時間刪除。文章觀點不代表本網(wǎng)站立場,如需處理請聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時需注明來源: 創(chuàng)新互聯(lián)
猜你還喜歡下面的內(nèi)容