diff --git a/rollup.config.js b/rollup.config.js index 71ec63424..fcec6db8b 100644 --- a/rollup.config.js +++ b/rollup.config.js @@ -1,6 +1,5 @@ const vue = require('rollup-plugin-vue') const resolve = require('@rollup/plugin-node-resolve') -const strip = require('@rollup/plugin-strip') const { terser } = require('rollup-plugin-terser') const naiveSCSSVariable = require('./build/naiveSCSSVarPlugin') @@ -33,7 +32,6 @@ module.exports = { } }), naiveSCSSVariable(), - strip(), terser({ mangle: false, output: { diff --git a/src/Tree/src/Tree.js b/src/Tree/src/Tree.js index a099f95c4..e9974b83c 100644 --- a/src/Tree/src/Tree.js +++ b/src/Tree/src/Tree.js @@ -152,7 +152,7 @@ export default { this.internalSelectedKeys = this.defaultSelectedKeys || [] if (this.defaultExpandAll) { this.internalExpandedKeys = getAllKeys(this.data) - console.log('getAllKeys(this.data)', getAllKeys(this.data)) + // console.log('getAllKeys(this.data)', getAllKeys(this.data)) } }, data () { @@ -189,7 +189,7 @@ export default { this.filter ) this.highlightKeys = highlightKeys - console.log(highlightKeys) + // console.log(highlightKeys) if (!this.hasExpandedKeys) { this.internalExpandedKeys = expandedKeysAfterChange }