diff --git a/package.json b/package.json index 012bccbef..74dbc0701 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "vant", - "version": "1.3.10", + "version": "1.4.0", "description": "Lightweight Mobile UI Components built on Vue", "main": "lib/index.js", "module": "es/index.js", diff --git a/packages/index.js b/packages/index.js index 95773be92..9f7fb2fc6 100644 --- a/packages/index.js +++ b/packages/index.js @@ -67,9 +67,10 @@ import Tag from './tag'; import Toast from './toast'; import TreeSelect from './tree-select'; import Uploader from './uploader'; +import VantCss from './vant-css'; import Waterfall from './waterfall'; -const version = '1.3.10'; +const version = '1.4.0'; const components = [ Actionsheet, AddressEdit, @@ -137,7 +138,8 @@ const components = [ Tag, Toast, TreeSelect, - Uploader + Uploader, + VantCss ]; const install = Vue => { @@ -222,6 +224,7 @@ export { Toast, TreeSelect, Uploader, + VantCss, Waterfall };