unable to fire the function or show the icon from the fontawesome although the library is imported

unable to fire the function or show the icon from the fontawesome although the library is imported

mimo_2005mimo_2005 Posts: 4Questions: 2Answers: 0
data() {
        return {
            columns: [
                {data: 'name'},
                {
                    data: null,
                    orderable: false,
                    render: (data) => {
                        return `<button type="button" @click.prevent="startUpdating(${data})">
                                          <font-awesome-icon icon="pen-to-square" style="color: orange" size="xl" data-toggle="tooltip" />
                                    </button>`;
                    }
                },
            ]
        }
    },

This question has an accepted answers - jump to answer

Answers

This discussion has been closed.