Skip to content

Commit d687320

Browse files
Alex-Sokolovkazupon
authored andcommitted
Change standalone to full build (vuejs#880)
* api/index.md change standalone to full * deployment.md change standalone to full * installation.md change standalone to full
1 parent 5ae11ca commit d687320

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

src/v2/api/index.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -351,7 +351,7 @@ type: api
351351

352352
- **Usage:**
353353

354-
Compiles a template string into a render function. **Only available in the standalone build.**
354+
Compiles a template string into a render function. **Only available in the full build.**
355355

356356
``` js
357357
var res = Vue.compile('<div><span>{{ msg }}</span></div>')
@@ -1013,7 +1013,7 @@ All lifecycle hooks automatically have their `this` context bound to the instanc
10131013
10141014
- **Details:**
10151015
1016-
Change the plain text interpolation delimiters. **This option is only available in the standalone build.**
1016+
Change the plain text interpolation delimiters. **This option is only available in the full build.**
10171017
10181018
- **Example:**
10191019

src/v2/guide/deployment.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ During development, Vue provides a lot of warnings to help you with common error
1010

1111
### Without Build Tools
1212

13-
If you are using the standalone build, i.e. directly including Vue via a script tag without a build tool, make sure to use the minified version (`vue.min.js`) for production. Both versions can be found in the [Installation guide](installation.html#Direct-lt-script-gt-Include).
13+
If you are using the full build, i.e. directly including Vue via a script tag without a build tool, make sure to use the minified version (`vue.min.js`) for production. Both versions can be found in the [Installation guide](installation.html#Direct-lt-script-gt-Include).
1414

1515
### With Build Tools
1616

src/v2/guide/installation.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -206,7 +206,7 @@ Also see [Production Deployment Tips](deployment.html).
206206

207207
### CSP environments
208208

209-
Some environments, such as Google Chrome Apps, enforce Content Security Policy (CSP), which prohibits the use of `new Function()` for evaluating expressions. The standalone build depends on this feature to compile templates, so is unusable in these environments.
209+
Some environments, such as Google Chrome Apps, enforce Content Security Policy (CSP), which prohibits the use of `new Function()` for evaluating expressions. The full build depends on this feature to compile templates, so is unusable in these environments.
210210

211211
On the other hand, the runtime-only build is fully CSP-compliant. When using the runtime-only build with [Webpack + vue-loader](https://github.com/vuejs-templates/webpack-simple) or [Browserify + vueify](https://github.com/vuejs-templates/browserify-simple), your templates will be precompiled into `render` functions which work perfectly in CSP environments.
212212

0 commit comments

Comments
 (0)