bkui-vue 2.0.1-beta.117 → 2.0.1-beta.118

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -895,7 +895,7 @@ var createInstance = function createInstance(el, binding) {
895
895
  createTimer = setTimeout(function () {
896
896
  var targetOptions = resolveOptions(el, binding);
897
897
  targetOptions.isShow = true;
898
- targetOptions.content = typeof targetOptions.content === 'function' ? targetOptions.content() : targetOptions.content || el.outerHTML;
898
+ targetOptions.content = typeof targetOptions.content === 'function' ? targetOptions.content() : targetOptions.content || el.innerText;
899
899
  targetOptions.allowHtml = true;
900
900
  Object.assign(targetOptions, {
901
901
  onContentMouseenter: handleContentEnter,
package/lib/index.js CHANGED
@@ -4,5 +4,5 @@ export { default } from './preset';
4
4
  export * from './config-provider';
5
5
  export * from './directives';
6
6
  export * as plugins from './plugins';
7
- export const version = "2.0.1-beta.117";
7
+ export const version = "2.0.1-beta.118";
8
8
  window.__bkui_vue_version__ = version;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "bkui-vue",
3
- "version": "2.0.1-beta.117",
3
+ "version": "2.0.1-beta.118",
4
4
  "workspaces": [
5
5
  "packages/**",
6
6
  "scripts/cli",