File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -140,7 +140,7 @@ We recommend a variant of BEM with PascalCased “blocks”, which works particu
140140** Example**
141141
142142``` jsx
143- // ListingCard .vue
143+ // listing-card .vue
144144< template>
145145 < article class = " listing-card listing-card--featured" >
146146 < h1 class = " listing-card__title" > Happy kids Wonderschool< / h1>
@@ -180,8 +180,8 @@ export default {};
180180```
181181
182182 * ` .listing-card ` is the “block” and represents the higher-level component
183- * ` .listing-card__title ` is an “element” and represents a descendant of ` .ListingCard ` that helps compose the block as a whole.
184- * ` .listing-card--featured ` is a “modifier” and represents a different state or variation on the ` .ListingCard ` block.
183+ * ` .listing-card__title ` is an “element” and represents a descendant of ` .listing-card ` that helps compose the block as a whole.
184+ * ` .listing-card--featured ` is a “modifier” and represents a different state or variation on the ` .listing-card ` block.
185185
186186### ID selectors
187187
You can’t perform that action at this time.
0 commit comments