@10yun/cv-mobile-ui 0.5.34 → 0.5.35
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.
package/package.json
CHANGED
|
@@ -150,9 +150,9 @@
|
|
|
150
150
|
import { throttle } from '../../libs/function/throttle.js';
|
|
151
151
|
import { mpMixin } from '../../libs/mixin/mpMixin.js';
|
|
152
152
|
import { mixin } from '../../libs/mixin/mixin.js';
|
|
153
|
-
import {
|
|
153
|
+
import { buttonMixin } from '../../libs/mixin/button.js';
|
|
154
154
|
import { openType } from '../../libs/mixin/openType.js';
|
|
155
|
-
import props from '../u-button/props.js';
|
|
155
|
+
import { props } from '../u-button/props.js';
|
|
156
156
|
/**
|
|
157
157
|
* button 按钮
|
|
158
158
|
* @description Button 按钮
|
|
@@ -205,9 +205,9 @@ import props from '../u-button/props.js';
|
|
|
205
205
|
* @example <up-button>千金散尽还复来</up-button>
|
|
206
206
|
*/
|
|
207
207
|
export default {
|
|
208
|
-
name: 'u-button',
|
|
208
|
+
name: 'u-button-wu',
|
|
209
209
|
// #ifdef MP
|
|
210
|
-
mixins: [mpMixin, mixin,
|
|
210
|
+
mixins: [mpMixin, mixin, buttonMixin, openType, props],
|
|
211
211
|
// #endif
|
|
212
212
|
// #ifndef MP
|
|
213
213
|
mixins: [mpMixin, mixin, props],
|