Skip to content

Commit

Permalink
Merge pull request #165 from ashcolor/develop
Browse files Browse the repository at this point in the history
deploy
  • Loading branch information
ashcolor authored Jun 22, 2024
2 parents bc53109 + 2cf0c7a commit c5a8375
Show file tree
Hide file tree
Showing 4 changed files with 23 additions and 12 deletions.
3 changes: 1 addition & 2 deletions components/pages/Blog/TmpPr.vue
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,7 @@ const isShow = startDateOneDayAgo <= new Date() && new Date() < AMAZON_SALE_END_
<span class="text-xl">
{{ AMAZON_SALE_END_DATE.getMonth() + 1 }}月{{
AMAZON_SALE_END_DATE.getDate()
}}
日({{ JAPANESE_DAYS[AMAZON_SALE_END_DATE.getDay()] }})
}}日({{ JAPANESE_DAYS[AMAZON_SALE_END_DATE.getDay()] }})
</span>
<span>23:59</span>
</p>
Expand Down
2 changes: 1 addition & 1 deletion content/blog/dtm/synthesizer-v-singer.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
createdAt: "2023/10/02"
updatedAt: "2024/05/16"
updatedAt: "2024/06/22"
title: "Synthesizer V歌声データベース一覧!発売予定やオススメ解説"
description: "Synthesizer Vの歌声データベースを一覧にして紹介しています。また、選び方やオススメの歌声データベースも紹介しています。"
category: "DTM"
Expand Down
16 changes: 8 additions & 8 deletions content/blog/programming/react-tutorial-vue.md
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ Reactの公式チュートリアルはこちらです。

#### Reactコード

```jsx
```jsx[App.js]
import { useState } from "react";
import Board from "./Board";
import Moves from "./Moves";
Expand Down Expand Up @@ -97,7 +97,7 @@ export default function Game() {

#### Vueコード

```html
```vue[App.vue]
<script setup>
import { ref, computed } from "vue";
import Board from "./Board.vue";
Expand Down Expand Up @@ -146,7 +146,7 @@ HTMLの記述は[ReactではJSX]{.marker}、[VueではHTMLベースのテンプ

#### Reactコード

```jsx
```jsx[Board.js]
import Square from "./Square";
export default function Board({ xIsNext, squares, onPlay }) {
Expand Down Expand Up @@ -216,7 +216,7 @@ export default function Board({ xIsNext, squares, onPlay }) {

#### Vueコード

```html
```vue[Board.vue]
<script setup>
import { computed } from "vue";
import Square from "./Square.vue";
Expand Down Expand Up @@ -300,7 +300,7 @@ export default function Board({ xIsNext, squares, onPlay }) {

#### Reactコード

```jsx
```jsx[Square.js]
export default function Square({ value, onSquareClick }) {
return (
<button className="square" onClick={onSquareClick}>
Expand All @@ -312,7 +312,7 @@ export default function Square({ value, onSquareClick }) {

#### Vueコード

```html
```vue[Square.vue]
<script setup>
const props = defineProps({
value: String,
Expand All @@ -334,7 +334,7 @@ export default function Square({ value, onSquareClick }) {

#### Reactコード

```jsx
```jsx[Moves.js]
export default function Moves({ history, onMoveClick }) {
return history.map((squares, move) => {
let description;
Expand All @@ -354,7 +354,7 @@ export default function Moves({ history, onMoveClick }) {

#### Vueコード

```html
```vue[Moves.vue]
<script setup>
import { computed } from "vue";
Expand Down
14 changes: 13 additions & 1 deletion nuxt.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,19 @@ export default defineNuxtConfig({
},
highlight: {
theme: "github-dark",
preload: ["vue", "python"],
langs: [
"markdown",
"html",
"css",
"javascript",
"js",
"ts",
"php",
"vue",
"python",
"bash",
"diff",
],
},
},

Expand Down

0 comments on commit c5a8375

Please sign in to comment.