@truenewx/tnxvue3 2.6.3 → 2.6.5

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.
@@ -1,23 +0,0 @@
1
- // tnxad.js
2
- /**
3
- * 基于AntDesign 2的扩展支持
4
- */
5
- import tnxvue from '../tnxvue.js';
6
- import AntDesign from 'ant-design-vue';
7
- import './tnxad.css';
8
-
9
- const components = Object.assign({}, tnxvue.components, {});
10
-
11
- const tnxad = Object.assign({}, tnxvue, {
12
- libs: Object.assign({}, tnxvue.libs, {AntDesign}),
13
- components,
14
- });
15
-
16
- tnxad.install = tnxad.util.function.around(tnxad.install, function(install, vm) {
17
- vm.use(AntDesign);
18
- install.call(window.tnx, vm);
19
- });
20
-
21
- window.tnx = tnxad;
22
-
23
- export default tnxad;