forked from jd-opensource/nutui
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdemo.js
141 lines (119 loc) · 2.47 KB
/
demo.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
var demoModel = function (nameLc) {
var teml = {
source: `<template>
<view :class="classes" @click="handleClick">
<view>{{ data }}</view>
</view>
</template>
<script lang="ts">
import { reactive, toRefs, computed } from 'vue';
import { createComponent } from '@/packages/utils/create';
const { componentName, create } = createComponent('${nameLc}');
export default create({
props: {
name: {
type: String,
default: ''
}
},
emits: ['click'],
setup(props, { emit }) {
const state = reactive({
data: 'Welcome to developing components'
});
const classes = computed(() => {
const prefixCls = componentName;
return {
[prefixCls]: true
};
});
const handleClick = (event: Event) => {
emit('click', event);
};
return { ...toRefs(state), classes, handleClick };
}
});
</script>
`,
demo: `<template>
<div class="demo">
<h2>基础用法</h2>
<nut-cell>
<nut-${nameLc}></nut-${nameLc}>
</nut-cell>
</div>
</template>
<script lang="ts">
import { createComponent } from '@/packages/utils/create';
const { createDemo } = createComponent('${nameLc}');
export default createDemo({
props: {},
setup() {
return {};
}
});
</script>
<style lang="scss" scoped>
.demo{
}
</style>
`,
taroDemo: `<template>
<div class="demo">
<h2>基础用法</h2>
<nut-cell>
<nut-${nameLc}></nut-${nameLc}>
</nut-cell>
</div>
</template>
<script lang="ts">
import { defineComponent } from 'vue';
export default defineComponent({
props: {},
setup() {
return {};
}
});
</script>
`,
doc: `# ${nameLc}
### 介绍
基于 xxxxxxx
### 安装
\`\`\`javascript
import { createApp } from 'vue';
// vue
import { } from '@nutui/nutui';
// taro
import { } from '@nutui/nutui-taro';
const app = createApp();
app.use();
\`\`\`
### 基础用法
:::demo
\`\`\`html
<template>
</template>
<script lang="ts">
export default {
setup() {
return { };
}
};
</script>
\`\`\`
:::
## API
### Props
| 参数 | 说明 | 类型 | 默认值 |
|--------------|----------------------------------|--------|------------------|
| name | 图标名称或图片链接 | String | - |
### Events
| 事件名 | 说明 | 回调参数 |
|--------|----------------|--------------|
| click | 点击图标时触发 | event: Event |
`
};
return teml;
};
module.exports = demoModel;