distinctui-uni 0.0.1

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 ADDED
@@ -0,0 +1,22 @@
1
+ # `distinct-ui`
2
+
3
+ > 卓正医疗小程序 UI 组件库
4
+
5
+ ## Usage
6
+
7
+ ```shell
8
+ npm install distinctui-uni
9
+ // or
10
+ yarn add distinctui-uni
11
+ ```
12
+
13
+ uni-app 项目 pages.json 配置
14
+
15
+ ```js
16
+ "easycom": {
17
+ "autoscan": true,
18
+ "custom": {
19
+ "dist-(.*)": "distinctui-uni/components/distinctui/dist-$1/dist-$1.vue"
20
+ }
21
+ }
22
+ ```
@@ -0,0 +1,16 @@
1
+ <template>
2
+ <view>未完成按钮</view>
3
+ </template>
4
+
5
+ <script>
6
+ export default {
7
+ data() {
8
+ return {};
9
+ },
10
+ computed: {},
11
+ onLoad() {},
12
+ methods: {}
13
+ };
14
+ </script>
15
+
16
+ <style scoped></style>
package/main.js ADDED
@@ -0,0 +1,12 @@
1
+ import Vue from 'vue'
2
+ import App from './App'
3
+ import './uni.promisify.adaptor'
4
+
5
+ Vue.config.productionTip = false
6
+
7
+ App.mpType = 'app'
8
+
9
+ const app = new Vue({
10
+ ...App
11
+ })
12
+ app.$mount()
package/package.json ADDED
@@ -0,0 +1,19 @@
1
+ {
2
+ "name": "distinctui-uni",
3
+ "version": "0.0.1",
4
+ "description": "卓正医疗小程序UI组件库",
5
+ "main": "main.js",
6
+ "files": [
7
+ "components"
8
+ ],
9
+ "scripts": {
10
+ "test": "echo \"Error: no test specified\" && exit 1"
11
+ },
12
+ "keywords": [
13
+ "uni-app",
14
+ "components",
15
+ "distinct-ui"
16
+ ],
17
+ "author": "",
18
+ "license": "ISC"
19
+ }