From 285dbdb61751817f09267c6a411eaa2378db98f1 Mon Sep 17 00:00:00 2001 From: Naoki Endoh Date: Sat, 30 Oct 2021 22:30:51 +0900 Subject: [PATCH] docs: translate single file component guide --- src/guide/single-file-component.md | 60 +++++++++++++++--------------- 1 file changed, 30 insertions(+), 30 deletions(-) diff --git a/src/guide/single-file-component.md b/src/guide/single-file-component.md index 2382a5f2..fca463af 100644 --- a/src/guide/single-file-component.md +++ b/src/guide/single-file-component.md @@ -2,7 +2,7 @@ ## 前書き -Vue Single File Components (aka `*.vue` files, abbreviated as **SFC**) is a special file format that allows us to encapsulate the template, logic, **and** styling of a Vue component in a single file. Here's an example SFC: +Vue 単一ファイルコンポーネント(別名 `*.vue` ファイル、 **SFC** と省略)は、Vue コンポーネントのテンプレート、ロジック、そして **スタイル** を 1 つのファイルにまとめることができる特別なファイル形式です。これが SFC の例です: ```vue