This commit is contained in:
Akira Tempaku 2024-04-21 19:31:36 +09:00
parent 4663341497
commit 280e2e018e
4 changed files with 12 additions and 16 deletions
public/vendor
src
scripts/pages
view/components

View file

@ -1,9 +1,7 @@
export function aboutPageState() {
return {
count: 0,
decrement() {
this.count--
}
export const aboutPageState = () => ({
count: 0,
decrement() {
this.count--
}
}
})

View file

@ -1,9 +1,7 @@
export function indexPageState() {
return {
count: 0,
export const indexPageState = () => ({
count: 0,
increment() {
this.count++
}
increment() {
this.count++
}
}
})

View file

@ -20,7 +20,7 @@
(html :lang "ja"
(head
(meta :charset "UTF-8")
(link :rel "stylesheet" :type "text/css" :href "/vendor/ress.css")
(link :rel "stylesheet" :type "text/css" :href "/vendor/ress@5.0.2.css")
(link :rel "stylesheet" :type "text/css" :href "/styles/global.css")
(on-demand-stylesheets pi:children)
(link :rel "preconnect" :href "https://fonts.googleapis.com")