Changelog
3.0.0-rc.3 (2018-06-18)
Changelog
3.0.0-rc.1 (2018-06-13)
Changelog
3.0.0-beta.16 (2018-06-08)
window.yourLib.default
, and in the CommonJS build as
const yourLib = require('yourLib').default
. If you don't have named exports
and want to retain the previous behavior, you can configure webpack to use
output.libraryExport: 'default'
in vue.config.js
.file-icon
for the configurations is removedicon
option changed and is now working differently: you can either use a material icon code or a custom image (see Public static files in the UI Plugin docs).icon
option which works exactly the sameChangelog
3.0.0-beta.15 (2018-05-30)
devBaseUrl
option has been removed. baseUrl
now works for
both development and production. To use different paths for prod/dev, use
conditional values based on process.env.NODE_ENV
in vue.config.js
.Changelog
3.0.0-beta.12 (2018-05-29)
pages
option (869f005)compiler
option has been renamed to runtimeCompiler
Changelog
3.0.0-beta.11 (2018-05-21)
shallow
to shallowMount
(#1269) (5c54df7)vue inspect
output with webpack-chain hints (f6bfb63), closes #881vue add
(2a195f0), closes #1202 #1204<style lang="postcss">
(#1259) (1037b9c)Changelog
3.0.0-beta.10 (2018-05-11)
vue-cli-service serve
(05f9f3a), closes #974css.modules
option has been removed. To import css files (or
any other supported pre-processor files) as CSS Modules, append the request
with a ?module
resourceQuery.config.module.rule(vue).use(vue-loader).tap()
.
vue-loader has been upgraded to v15 and expects different options from v14.cli-plugin-unit-jest
and cli-plugin-unit-mocha
now register
"test:unit" command and script instead of "test"; cli-plugin-e2e-cypress
now
register "test:e2e" with optional --headless
flag instead of "e2e" and
"e2e:open"; cli-plugin-e2e-nightwatch
now register "test:e2e" instead of "e2e".module.exports.defaultModes
in the form of { [commandName]: mode }
.