Skip to content

Commit 832ffe8

Browse files
committed
2 parents 6dd75ba + 8bc312c commit 832ffe8

File tree

1 file changed

+5
-9
lines changed

1 file changed

+5
-9
lines changed

README.md

Lines changed: 5 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,7 @@ View UI Plus
3232
We provide starter kit for you.
3333
- [View UI Plus Project (Based on Vue CLI)](https://github.com/view-design/view-ui-project-vuecli)
3434
- [View UI Plus Project (Based on Vite)](https://github.com/view-design/view-ui-project-vite)
35+
- [View UI Plus Project (Based on TypeScript)](https://github.com/view-design/view-ui-project-ts)
3536
- [View UI Plus Project (Based on Nuxt)](https://github.com/view-design/view-ui-project-nuxt)
3637

3738
### Install View UI Plus
@@ -56,14 +57,9 @@ You can find more info [on the website](https://www.iviewui.com/view-ui-plus/gui
5657
<template>
5758
<Slider v-model="value" range />
5859
</template>
59-
<script>
60-
export default {
61-
data () {
62-
return {
63-
value: [20, 50]
64-
}
65-
}
66-
}
60+
<script setup>
61+
import { ref } from 'vue'
62+
const value = ref([20, 50])
6763
</script>
6864
```
6965

@@ -78,7 +74,7 @@ import 'view-ui-plus/dist/styles/viewuiplus.css'
7874
If you want to contribute us or in case you are haiving any doubt.
7975

8076
**Questions:** Find other users at the [Gitter chat](https://gitter.im/iview/iview) or post on [StackOverflow using `[iview-ui]` tag](https://stackoverflow.com/questions/tagged/iview-ui)
81-
**Bugs:** [File a issue here](https://github.com/iview-design/iview/issues) - please provide a example so we can help you better
77+
**Bugs:** [File a issue here](https://www.iviewui.com/new-issue) - please provide a example so we can help you better
8278
**Contribute:** Contact us in [Gitter chat](https://gitter.im/iview/iview), WeChat or via mail to `[email protected]`. PRs welcome!
8379

8480
## Major Contributors

0 commit comments

Comments
 (0)