1
使用的styles
選項/屬性的正確方法是什麼?使用styles
屬性與來自存儲庫stencil-component-starter的默認my-name
組件似乎不會影響相應組件的樣式,也不會生成<head>
中的<style>
標籤。 styles
打算如何工作?還是它尚未實施?如果目標是避免需要加載單獨的CSS資產,但爲組件提供樣式,那麼styles
是正確的選擇,還是需要使用另一個屬性,例如host
?StencilJS組件樣式
下面是從模版組件起動器產生的樣本成分] 1與具有styles
屬性和設置font-size
屬性替換stylesUrl
@Component屬性。在dev
或build
任務期間不生成錯誤。
import { Component, Prop } from '@stencil/core';
@Component({
tag: 'my-name',
styles: `my-name { font-size: 24px; }`
})
export class MyName {
@Prop() first: string;
render() {
return (
<div>
Hello, my name is {this.first}
</div>
);
}
}
ComponentDecorator
被定義爲:
export interface ComponentOptions {
tag: string;
styleUrl?: string;
styleUrls?: string[] | ModeStyles;
styles?: string;
shadow?: boolean;
host?: HostMeta;
assetsDir?: string;
assetsDirs?: string[];
}
謝謝你的任何幫助,您可以提供!
謝謝!這很奇怪,'styles'只能和'styleUrl'結合使用。我的目標是避免生成由生成的資產生成和引用的CSS文件。也許這將在未來得到改進,'風格'內容將以某種方式與建築資產'JS捆綁在一起。 –
嘿@AlexanderStaroselsky你的意思是「只有聯結......」嗎?你是否需要這兩個'因爲這個答案中的示例只有''''''' –
@MatthiasMax最初的目標是使用'styles'屬性沿着注入樣式的行來避免需要單獨的樣式表。自提問/回答以來,對StencilJS進行了一系列關鍵更新,包括注入式樣。這不再是一個問題,謝謝! –