We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9e8e89f commit e08c514Copy full SHA for e08c514
front-end/h5/src/views/Editor.vue
@@ -177,7 +177,8 @@ const LbpButton = {
177
<el-radio-group v-model="value_" size="small">
178
<el-tooltip effect="dark" :content="item.label" placement="top" :key="index" v-for="(item, index) in textAlignTabs">
179
<el-radio-button :label="item.value">
180
- <i :class="['fa', 'fa-align-\${item.value}']" aria-hidden="true"></i>
+ <!-- issue #8 -->
181
+ <i :class="['fa', 'fa-align-'+item.value]" aria-hidden="true"></i>
182
</el-radio-button>
183
</el-tooltip>
184
</el-radio-group>
0 commit comments