我知道这似乎很基本,但是我有一个svelte:component我希望能够设置样式,但是在Svelte文档中找不到任何告诉我如何做的东西。
答案 0 :(得分:1)
<security>
<authentication>
<anonymousAuthentication enabled="true" />
<windowsAuthentication enabled="true" />
</authentication>
</security>
<cors enabled="true">
<add origin="https://front-end.com" allowCredentials="true">
<allowHeaders allowAllRequestedHeaders="true" />
<allowMethods>
<add method="GET" />
<add method="HEAD" />
<add method="POST" />
<add method="PUT" />
<add method="DELETE" />
<add method="OPTIONS" />
</allowMethods>
</add>
</cors>
是一种虚拟元素,在最终呈现的DOM中将没有相应的元素。因此,您无法设置样式。