forked from jd-opensource/nutui
-
Notifications
You must be signed in to change notification settings - Fork 0
/
demo.js
203 lines (165 loc) · 3.51 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
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
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>{{ translate('basic') }}</h2>
<nut-cell>
<nut-${nameLc}></nut-${nameLc}>
</nut-cell>
</div>
</template>
<script lang="ts">
import { createComponent } from '@/packages/utils/create';
const { createDemo, translate } = createComponent('${nameLc}');
import { useTranslate } from '@/sites/assets/util/useTranslate';
const initTranslate = () => useTranslate({
'zh-CN': {
basic: '基本用法'
},
'en-US': {
basic: 'Basic Usage'
}
})
export default createDemo({
props: {},
setup() {
initTranslate();
return { translate };
}
});
</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 |
`,
docEN: `# ${nameLc}
### Intro
### Install
\`\`\`javascript
import { createApp } from 'vue';
// vue
import { } from '@nutui/nutui';
// taro
import { } from '@nutui/nutui-taro';
const app = createApp();
app.use();
\`\`\`
### Basic Usage
:::demo
\`\`\`html
<template>
</template>
<script lang="ts">
export default {
setup() {
return { };
}
};
</script>
\`\`\`
:::
## API
### Props
| Attribute | Description | Type | Default |
|--------------|----------------------------------|--------|------------------|
| name | description | String | - |
### Events
| Event | Description | Arguments |
|--------|----------------|--------------|
| click | description | event: Event |
`
};
return teml;
};
module.exports = demoModel;