n20-project-component 1.0.0 → 1.0.3
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/README.md +97 -51
- package/dist/n20-project-component.common.js +564 -28
- package/dist/n20-project-component.css +1 -1
- package/dist/n20-project-component.umd.js +564 -28
- package/dist/n20-project-component.umd.min.js +1 -1
- package/package.json +1 -1
- package/src/components/N20BatchInput/index.vue +237 -0
- package/src/components/N20CopyText/index.vue +3 -41
- package/src/components/N20FloatingToolbar/index.vue +318 -0
- package/src/index.js +6 -0
package/src/index.js
CHANGED
|
@@ -6,17 +6,23 @@
|
|
|
6
6
|
// ========== 组件导入 ==========
|
|
7
7
|
import DemoButton from './components/DemoButton/index.vue'
|
|
8
8
|
import N20CopyText from './components/N20CopyText/index.vue'
|
|
9
|
+
import N20FloatingToolbar from './components/N20FloatingToolbar/index.vue'
|
|
10
|
+
import N20BatchInput from './components/N20BatchInput/index.vue'
|
|
9
11
|
|
|
10
12
|
// ========== 组件列表 ==========
|
|
11
13
|
const components = {
|
|
12
14
|
DemoButton,
|
|
13
15
|
N20CopyText,
|
|
16
|
+
N20FloatingToolbar,
|
|
17
|
+
N20BatchInput,
|
|
14
18
|
}
|
|
15
19
|
|
|
16
20
|
// ========== 按需导出 ==========
|
|
17
21
|
export {
|
|
18
22
|
DemoButton,
|
|
19
23
|
N20CopyText,
|
|
24
|
+
N20FloatingToolbar,
|
|
25
|
+
N20BatchInput,
|
|
20
26
|
}
|
|
21
27
|
|
|
22
28
|
// ========== 全量注册(Vue.use)==========
|