我已经以这种方式包含了我的组件的.css文件。
angular.
module('home').
component('home', {
templateUrl: 'home/home.template.html',
styleUrls: 'home/home.component.css'
});
'但是样式表似乎没有得到应用。包含样式表的正确方法是什么?This is the folder structure.
我已经以这种方式包含了我的组件的.css文件。
angular.
module('home').
component('home', {
templateUrl: 'home/home.template.html',
styleUrls: 'home/home.component.css'
});
'但是样式表似乎没有得到应用。包含样式表的正确方法是什么?This is the folder structure.
4条答案
按热度按时间ddrv8njm1#
你必须在网址上加上方括号,如下所示:
styleUrls: ['home/home.component.css']
lvjbypge2#
styleUrls接受数组
gtlvzcf83#
cvxl0en24#
我想你是说这个click link here
在Angular -倾角