From e301c7df1ce3dbf235a6dec82cbb10868597f364 Mon Sep 17 00:00:00 2001 From: hanachin Date: Fri, 30 Oct 2015 23:12:21 +0900 Subject: [PATCH] Update README babel config example format --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 147615f..75e9a3a 100644 --- a/README.md +++ b/README.md @@ -112,13 +112,13 @@ If you wish to mofidy this, you can add a `vue.config.js` and configure the opti ``` js // vue.config.js -module.exports = function (vueify) { - vueify.option('babel', { +module.exports = { + babel: { stage: 0, // use all the fancy stage 0 features! optional: ['runtime'], loose: 'all', nonStandard: false - }) + } } ```