Memo
vue Nuxt に semantic-uiの導入
Home
›
Memo
›
Nuxt に semantic-uiの導入
本稿について
本稿はサイト運営者が学んだことなどを記したメモの内容です。
全てが正確な情報とは限りません。ご注意ください。また修正するべき点は適時修正していきます
npm install semantic-ui-vue --save
npm install semantic-ui-css --save
nuxt.config.js
// Modules (https://go.nuxtjs.dev/config-modules)
modules: [
// https://go.nuxtjs.dev/pwa
'@nuxtjs/pwa',
'semantic-ui-vue/nuxt'
],
[参考]
https://github.com/Semantic-UI-Vue/Semantic-UI-Vue
関連ページ
Vue(Javascript)で配列をコピーする
#vue
2020-11-06 21:02:45
templateのDOMにアクセスする
#vue
2020-08-25 19:10:27
コンポーネントの削除
#vue
2020-06-14 18:25:52
イベントハンドリング
#vue
2020-08-31 17:30:54
Nuxt 共通関数 (inject)
#vue
2020-12-21 18:44:54
Back