它无法在操作按钮中显示图标,当我检查页面时,它不会加载我“:: before”
我在按钮中看不到图标!
如何替换 ionicons 为 eva 图标。
我将智能表添加到我的项目中,但未能成功显示 eva 图标包的图标。我遵循本指南:
https://github.com/akveo/ng2-smart-table
http://akveo.com/ngx-admin/pages/tables/smart-table中的工作示例
<a class="ng2-smart-action ng2-smart-action-add-add ng-star-inserted" href="#">
<i class="nb-plus">
::before == $0
</i></a>
我的代码在检查
<a class="ng2-smart-action ng2-smart-action-add-add ng-star-inserted" href="#"> == $0
<i class="nb-plus"></i></a>
我的设置:
settings = {
add: {
addButtonContent: '<i class="nb-plus"></i>',
createButtonContent: '<i class="nb-checkmark"></i>',
cancelButtonContent: '<i class="nb-close"></i>',
},
edit: {
editButtonContent: '<i class="nb-edit"></i>',
saveButtonContent: '<i class="nb-checkmark"></i>',
cancelButtonContent: '<i class="nb-close"></i>',
},
delete: {
deleteButtonContent: '<i class="nb-trash"></i>',
confirmDelete: true,
},
columns: {
id: {
title: 'ID',
type: 'number',
},
firstName: {
title: 'First Name',
type: 'string',
},
lastName: {
title: 'Last Name',
type: 'string',
},
username: {
title: 'Username',
type: 'string',
},
email: {
title: 'E-mail',
type: 'string',
},
age: {
title: 'Age',
type: 'number',
},
},
};
我需要更改并显示操作按钮上的图标