Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 | 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x | // region import // 各種ライブラリ・DI対象・ローカルコンポーネント・型の import をまとめる
import {createVuetify} from 'vuetify'
import * as components from 'vuetify/components'
import * as labsComponents from 'vuetify/labs/components'
import * as directives from 'vuetify/directives'
import {aliases, mdi} from 'vuetify/iconsets/mdi'
import '@mdi/font/css/materialdesignicons.css'
import 'vuetify/styles';
import {md3} from 'vuetify/blueprints'
import * as locales from 'vuetify/locale'
// endregion import
// region type // このファイル内でのみ使う型定義(interface, type alias など)
// endregion type
// region i18n // useI18n などを初期化し、t() / d() を取り出す
// endregion i18n
// region router // useRouter / useRoute など、画面遷移やクエリ取得に関する処理
// endregion router
// region store // Pinia の useXxxStore を読み込み、状態/アクションを利用
// endregion store
// region props // defineProps による外部から受け取る値の定義
// endregion props
// region emits // defineEmits による親へ送るイベント定義
// endregion emits
// region slots // スロットの型情報や利用(useSlots / defineSlots)
// endregion slots
// region constant // このコンポーネント専用の定数/enum/テーブルなど(不変の値)
export const brandLight = {
dark: false,
colors: {
// ベース
background: '#F5F5F5',
surface: '#FFFFFF',
// 主要カラー(濃いグレー系)
primary: '#1F2933', // 決定系ボタン (ok/save/update/register)
secondary: '#6B7280', // 補助ボタン (edit/cancel/close/reload)
// 状態系
success: '#4CAF50',
warning: '#F9A825',
error: '#E53935',
// その他
info: '#0284C7',
// "on-X" 系を定義しておくと Vuetify の判定が安定する
'on-surface': '#1F2933',
'on-primary': '#FFFFFF',
'on-secondary': '#FFFFFF',
},
variables: {
'border-radius-root': '14px',
},
}
export const brandDark = {
dark: true,
colors: {
background: '#0F1115',
surface: '#13161B',
primary: '#E5E7EB', // 明色
secondary: '#9CA3AF',
info: '#60A5FA',
success: '#34D399',
warning: '#F59E0B',
error: '#F87171',
'on-surface': '#E5E7EB',
},
variables: {
'border-radius-root': '14px',
},
}
// “Vuetifyっぽさ”を生む要素を標準でオフ/薄くするデフォルト
const blueprint = {
...md3,
defaults: {
global: { ripple: false, density: 'comfortable' },
VAppBar: { elevation: 0, flat: true },
VNavigationDrawer: { elevation: 0, rail: false },
VFooter: { elevation: 0, absolute: false },
VCard: { elevation: 0, rounded: 'xl', variant: 'flat' },
// ボタンは"ゴースト"寄りに
VBtn: { rounded: 'xl', elevation: 0, variant: 'text', class: 'btn-ghost' },
// 入力系はシャドウ無し・枠弱め
VTextField: { variant: 'outlined', hideDetails: 'auto', density: 'comfortable' },
VSelect: { variant: 'outlined', hideDetails: 'auto', density: 'comfortable' },
VTextarea: { variant: 'outlined', hideDetails: 'auto', density: 'comfortable' },
},
}
const vuetify = createVuetify(
{
date: {
formats: {
dayOfMonth: (date: Date) => date.getDate(),
},
},
// 👇 ここを追加:Vuetify 本体に ja ロケールを登録
locale: {
locale: 'ja', // デフォルトのロケール
fallback: 'en', // キーが足りないときに使うロケール
messages: locales,
},
components: {
...components,
...labsComponents,
},
directives,
blueprint,
icons: {
defaultSet: "mdi",
aliases,
sets: {
mdi,
},
},
theme: {
defaultTheme: 'brandLight',
themes: {
brandLight,
brandDark,
},
},
},
);
// endregion constant
// region state // ref / reactive / useForm など、変化する状態を定義
// endregion state
// region computed // 派生状態(computed)をまとめる
// endregion computed
// region validation // Zod / Yup / Vee-Validate 等のスキーマ・ルール・フォーム設定
// endregion validation
// region permission // 権限による UI/操作の可否を判定するロジック(isEditable など)
// endregion permission
// region api // Axios クライアントを使った通信処理(fetchXxx / updateXxx など)
// endregion api
// region watcher // watch / watchEffect など、状態の変化に応じた処理
// endregion watcher
// region effect // watcher 以外の副作用(外部ライブラリ初期化・setInterval 等)
// endregion effect
// region handler // ボタン押下・フォーム送信など UI から呼ばれるイベントハンドラ
// endregion handler
// region lifecycle // onMounted / onUnmounted / onBeforeRouteLeave などのライフサイクル処理
// endregion lifecycle
// region provide-inject // コンポーネント間で共有する provide / inject の定義
// endregion provide-inject
// region expose // defineExpose により外部へ公開するメソッドやプロパティ
// endregion expose
// region devtool // 開発環境専用のログ出力・debug 情報など(import.meta.env.DEV)
// endregion devtool
// region test-id // data-testid 用の定数定義など(ユニット/E2E テスト向け)
// endregion test-id
export default vuetify;
|