forked from nuxt/docs
-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #96 from o1o9814/translation-ko-api
Translation ko api
- Loading branch information
Showing
2 changed files
with
75 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
--- | ||
title: "API: <nuxt-link> 컴포넌트" | ||
description: 다른 페이지에 연결합니다. | ||
--- | ||
|
||
# <nuxt-link> 컴포넌트 | ||
<!--# The <nuxt-link> Component--> | ||
|
||
> 해당 컴포넌트는 현재 페이지와 다른 페이지를 연결하는 데 사용됩니다. | ||
<!--> This component is used to link the page components between them.--> | ||
현재 `<nuxt-link>` 는 [`<router-link>`](https://router.vuejs.org/en/api/router-link.html) 와 동일합니다. 사용 방법은 [vue-router documentation](https://router.vuejs.org/en/api/router-link.html) 를 확인해보세요. | ||
<!--At the moment, `<nuxt-link>` is the same as [`<router-link>`](https://router.vuejs.org/en/api/router-link.html), so we recommend you to see how to use it on the [vue-router documentation](https://router.vuejs.org/en/api/router-link.html).--> | ||
|
||
예제 (`pages/index.vue`): | ||
<!--Example (`pages/index.vue`):--> | ||
|
||
```html | ||
<template> | ||
<div> | ||
<h1>Home page</h1> | ||
<nuxt-link to="/about">About</nuxt-link> | ||
</div> | ||
</template> | ||
``` | ||
|
||
앞으로 어플리케이션 응답 속도 향상을 위해 `pre-fetching` 기능을 백그라운드에 추가할 것입니다. | ||
<!--In the future, we will add features to the nuxt-link component, like pre-fetching on the background for improving the responsiveness of nuxt.js applications.--> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
--- | ||
title: "API: Nuxt(options)" | ||
description: nuxt.js 의 programmatically 을 사용하면, 렌더링 시 원하는 방식으로 서버를 구성할 수 있는 미들웨어로 사용할 수 있습니다. | ||
--- | ||
|
||
# Nuxt.js Programmatically 사용 | ||
<!--# Using Nuxt.js Programmatically--> | ||
|
||
미들웨어와 API 만을 사용하여 서버를 구성해야 할 수도 있기에, Nuxt.js 에서는 Programmatically 방식을 제공합니다. | ||
Nuxt.js 는 코드가 좀 더 재미있고, 깔끔하게 읽을 수 있게 만들어주는 ES2015 를 기반으로 구현되었습니다. 코드는 별다른 트랜스파일러를 사용하지 않으며, 코어 V8 엔진에만 의존합니다. 때문에 Nuxt.js 는 Node.js `4.0` 또는 `그 이상의 버전` 을 대상으로 합니다. | ||
|
||
<!--You might want to use your own server with your middleware and your API. That's why you can use Nuxt.js programmatically. | ||
Nuxt.js is built on the top of ES2015, which makes the code more enjoyable and cleaner to read. It doesn't make use of any transpilers and depends upon Core V8 implemented features. For these reasons, Nuxt.js targets Node.js `4.0` or higher.--> | ||
|
||
require 를 통해 Nuxt.js 를 사용할 수 있습니다. | ||
<!--You can require Nuxt.js like this:--> | ||
```js | ||
const Nuxt = require('nuxt') | ||
``` | ||
|
||
## Nuxt(options) | ||
|
||
Nuxt.js 의 옵션을 보려면, configuration section 을 확인해보세요. | ||
<!--To see the list of options to give to Nuxt.js, see the configuration section.--> | ||
|
||
```js | ||
const options = {} | ||
|
||
const nuxt = new Nuxt(options) | ||
nuxt.build() | ||
.then(() => { | ||
// nuxt.render(req, res) 또는 nuxt.renderRoute(route, context) 를 사용할 수 있습니다. | ||
}) | ||
``` | ||
[nuxt-express](https://github.com/nuxt/express), [adonuxt](https://github.com/nuxt/adonuxt) 를 사용하면 빠르게 시작할 수 있습니다. | ||
|
||
<!--You can take a look at the [nuxt-express](https://github.com/nuxt/express) and [adonuxt](https://github.com/nuxt/adonuxt) starters to start quickly.--> | ||
|
||
### 디버그 로그 | ||
<!--### Debug logs--> | ||
|
||
nuxt.js 로그가 화면에 표시되는 것을 원한다면, 파일의 최상단에 아래와 같은 코드를 추가하시면 됩니다. | ||
<!--If you want to display nuxt.js logs, you can add to the top of your file:--> | ||
|
||
```js | ||
process.env.DEBUG = 'nuxt:*' | ||
``` |