我想知道是否可以为组件元素本身分配一个类。
假设我有这个组件:
<html>
<body>
<element name="x-preview" constructor="PreviewComponent" extends="div" class="preview">
<template>
<div class="preview">
</div>
</template>
</element>
</body>
</html>
现在我希望能够删除<div class="preview">
里面的元素,因为我已经有了包装x-preview
div。简单地设置class="preview"
是<element>
行不通的。
有可能这样做吗?