whitevenus
whitevenus
```vue defineProps({ type: { type: String, required: true, default: "default", validator: (value:string) => { return ["primary", "ghost", "dashed", "link", "text", "default"].includes(value) } } }) Button ```
```vue Hello Vue.js p { font-size: 20px; color: red; text-align: center; line-height: 50px; } /* Make it work */ :global(body) { width: 100vw; height: 100vh; background-color: burlywood; } ```
```vue import { ref } from 'vue'; const theme = ref('red'); const colors = ['blue', 'yellow', 'red', 'green']; setInterval(() => { theme.value = colors[Math.floor(Math.random() * 4)]; }, 1000); hello /*...
```vue import { ref } from 'vue'; const count = ref(0); setInterval(() => { count.value++; }, 1000); Make it never change: {{ count }} ```
```vue import { ref } from 'vue'; const msg = ref('Hello World'); {{ msg }} ```
### Description # GPT4收费太贵 + 发现就不到10道题就要耗费掉大约1美金 # 关于是否能够支持智谱清言ChatGLM的api-key的请求 + 因为经常使用智谱清言,觉得其对中文的支持度较好 + 自己的笔记多是中文,因此希望您能在百忙之中抽出一点时间,额外增加一个国内大预言模型的api-key支持可以吗