小編給大家分享一下vue給組件加css樣式的方法,希望大家閱讀完這篇文章后大所收獲,下面讓我們一起去探討吧!
我們提供的服務(wù)有:網(wǎng)站設(shè)計(jì)制作、成都網(wǎng)站制作、微信公眾號(hào)開發(fā)、網(wǎng)站優(yōu)化、網(wǎng)站認(rèn)證、合肥ssl等。為上千家企事業(yè)單位解決了網(wǎng)站和推廣的問題。提供周到的售前咨詢和貼心的售后服務(wù),是有科學(xué)管理、有技術(shù)的合肥網(wǎng)站制作公司vue給組件加css樣式的方法:首先在【.vue】文件中設(shè)置相關(guān)代碼;然后新建【index.js】文件,并建立對(duì)應(yīng)的【record.scss】文件即可。
vue給組件加css樣式的方法:
首先,在.vue
文件中設(shè)置如下:
<template src="./record.html"></template> <script src="./record.js"></script> <style src="./record.scss"></style>
新建index.js文件,如下:
import record from './record.vue'; export default record;
建立相對(duì)應(yīng)的record.html、record.js、record.scss的文件,就可以了,拿.js來說:
// -- NAME -- const name = 'record'; // -- DATA -- const data = function () { return { }; }; // -- COMPUTED -- const computed = { }; // -- COMPONENTS -- const components = { } // -- WATCH -- const watch = { }; // -- METHODS -- const methods = { }; // -- HOOKS -- function mounted() { } // == EXPORT == export default { name: name, data: data, components: components, computed: computed, watch: watch, methods: methods, mounted: mounted };
另一種方法可以直接引用:
<template> <div>html</div> </template> <script src="./***.js"></script> <style src="./***.css"></style>
形式多樣,但根本思想都是分離獨(dú)立文件,引入加載
看完了這篇文章,相信你對(duì)vue給組件加css樣式的方法有了一定的了解,想了解更多相關(guān)知識(shí),歡迎關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道,感謝各位的閱讀!
文章標(biāo)題:vue給組件加css樣式的方法-創(chuàng)新互聯(lián)
地址分享:http://jinyejixie.com/article18/diecdp.html
成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供手機(jī)網(wǎng)站建設(shè)、品牌網(wǎng)站建設(shè)、App設(shè)計(jì)、動(dòng)態(tài)網(wǎng)站、網(wǎng)站設(shè)計(jì)公司、虛擬主機(jī)
聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請(qǐng)盡快告知,我們將會(huì)在第一時(shí)間刪除。文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如需處理請(qǐng)聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時(shí)需注明來源: 創(chuàng)新互聯(lián)
猜你還喜歡下面的內(nèi)容