inflearn logo
講義

講義

知識共有

ohswallowさんの投稿

ohswallow ohswallow

@ohswallow

レビュー投稿数
-
平均評価
-

投稿 2

Q&A

font-weight가 왜 적용이 안될까요?

settings.json { "editor.tabSize": 2, "editor.defaultFormatter": "esbenp.prettier-vscode", "editor.formatOnSave": true, "files.associations": { "*.css": "tailwindcss" }, "editor.quickSuggestions": { "strings": "on" } } tailwind.config.js /** @type {import('tailwindcss').Config} */ module.exports = { content: ["./src/**/*.{html,js}"], theme: { extend: {}, }, plugins: [], }; snippets Spacing Tailwind CSS styling issue 해당 링크는 404 뜨네요

いいね数
0
コメント数
3
閲覧数
419

Q&A

unplugin-vue-router 가 안되네요.

index.js에 다음 추가하니까 되네요. +import { routes } from 'vue-router/auto-routes' createRouter({ history: createWebHistory(), // pass the generated routes written by the plugin 🤖 + routes, })

いいね数
0
コメント数
2
閲覧数
293