Skip to content
This repository has been archived by the owner on May 25, 2024. It is now read-only.

Commit

Permalink
「商品の内容を変更」章で+-差分表記していたのを変更前、変更後表記に変更。(#176
Browse files Browse the repository at this point in the history
  • Loading branch information
happylifetaka committed Oct 22, 2023
1 parent ef5905c commit 42290ba
Showing 1 changed file with 13 additions and 8 deletions.
21 changes: 13 additions & 8 deletions docs/rendering.md
Original file line number Diff line number Diff line change
Expand Up @@ -116,17 +116,22 @@ mustache とは口髭を指す英語で、二重中括弧 `{{ }}` が口髭の
## 商品の内容を変更
商品の内容を変更し、表示に反映されることを確認してみましょう。商品名 `name`、概要文 `description`、価格 `price` をそれぞれ適当に変更します。

```diff
変更前(script)

<<< @/../examples/rendering/src/App.vue#script

変更後(script)

```vue
<script setup>
import { ref } from 'vue'
const item = ref({
- name: "アボカドディップバケット",
- description: "刻んだ野菜をアボカドと混ぜてディップに。こんがり焼いたバゲットとお召し上がりください。",
- price: 480,
+ name: "アボカドソースバケット",
+ description: "刻んだ野菜をアボカドと混ぜ、優しい味のソースに。こんがり焼いたバゲットとお召し上がりください。",
+ price: 320,
image: "/images/item1.jpg"
id: 1,
name: 'アボカドソースバケット',
description:
'刻んだ野菜をアボカドと混ぜ、優しい味のソースに。こんがり焼いたバゲットとお召し上がりください。',
price: 320,
image: '/images/item1.jpg'
})
</script>
```
Expand Down

0 comments on commit 42290ba

Please sign in to comment.