Skip to content

Commit 0f3e963

Browse files
authored
update: base (#179)
* update: base * lint
1 parent 597e7a0 commit 0f3e963

File tree

6 files changed

+12
-29
lines changed

6 files changed

+12
-29
lines changed

src/assets/scss/var/index.scss

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
@import './variables';
2-
@import './mixins';
3-
@import './tailwind';
1+
@use './variables';
2+
@use './mixins';
3+
@use './tailwind';

src/composables/useMeta.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { type MetaFlat } from 'zhead'
1+
import type { MetaFlat } from 'zhead'
22

33
type MetaPickedRequired = Pick<
44
MetaFlat,

src/pages/contact/confirm.vue

+2-6
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<template>
22
<div>
3-
<section :class="$style.section">
3+
<section>
44
<h1>お問い合わせ 入力内容確認</h1>
55
<TheContactFormConfirm class="contact-form" />
66
</section>
@@ -19,8 +19,4 @@
1919
robots: 'none',
2020
})
2121
</script>
22-
<style lang="scss" module>
23-
.section {
24-
@apply w-9/12 mx-auto;
25-
}
26-
</style>
22+
<style lang="scss" module></style>

src/pages/contact/index.vue

+2-7
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<template>
22
<div>
3-
<section :class="$style.section">
3+
<section>
44
<h1>お問い合わせ</h1>
55
<TheContactForm />
66
</section>
@@ -21,9 +21,4 @@
2121
const { initializeForm } = useContactForm()
2222
initializeForm()
2323
</script>
24-
e
25-
<style lang="scss" module>
26-
.section {
27-
@apply w-9/12 mx-auto;
28-
}
29-
</style>
24+
<style lang="scss" module></style>

src/pages/contact/thanks.vue

+2-6
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<template>
22
<div>
3-
<section :class="$style.section">
3+
<section>
44
<h1>お問い合わせ</h1>
55
<p>お問い合わせいただきありがとうございました</p>
66
</section>
@@ -21,8 +21,4 @@
2121
const { initializeForm } = useContactForm()
2222
initializeForm()
2323
</script>
24-
<style lang="scss" module>
25-
.section {
26-
@apply w-9/12 mx-auto;
27-
}
28-
</style>
24+
<style lang="scss" module></style>

src/pages/index.vue

+2-6
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<template>
22
<div>
3-
<section :class="$style.section">
3+
<section>
44
<h1>Index page</h1>
55
</section>
66
</div>
@@ -18,8 +18,4 @@
1818
robots: 'all',
1919
})
2020
</script>
21-
<style lang="scss" module>
22-
.section {
23-
@apply w-9/12 mx-auto;
24-
}
25-
</style>
21+
<style lang="scss" module></style>

0 commit comments

Comments
 (0)