“Ikon Vue Font Awesome” Kode Jawaban

Ikon Vue Font Awesome

<template>
  <div id="app">
    <font-awesome-icon icon="user-secret" />
  </div>
</template>

<script>
export default {
  name: 'App'
}
</script>
Careful Cowfish

Ikon Vue Font Awesome

import { library } from '@fortawesome/fontawesome-svg-core'
import { faUserSecret } from '@fortawesome/free-solid-svg-icons'

library.add(faUserSecret)
Careful Cowfish

Ikon Vue Font Awesome

<!-- The solid style is implicit -->
<font-awesome-icon icon="user-secret" />

<!-- It's better to be explicit -->
<!-- Don't forget to bind the property with ":" (we forget all the time!) -->
<font-awesome-icon :icon="['fas', 'user-secret']" />
Careful Cowfish

Jawaban yang mirip dengan “Ikon Vue Font Awesome”

Pertanyaan yang mirip dengan “Ikon Vue Font Awesome”

Lebih banyak jawaban terkait untuk “Ikon Vue Font Awesome” di JavaScript

Jelajahi jawaban kode populer menurut bahasa

Jelajahi bahasa kode lainnya