You've already forked AstralRinth
forked from didirus/AstralRinth
Adds number input style and doc. Bumps package version. (#37)
This commit is contained in:
20
docs/components/number-inputs.md
Normal file
20
docs/components/number-inputs.md
Normal file
@@ -0,0 +1,20 @@
|
||||
# Number Inputs
|
||||
|
||||
<script setup>
|
||||
import { ref } from "vue";
|
||||
|
||||
const input = ref(0)
|
||||
</script>
|
||||
<DemoContainer>
|
||||
<input v-model="input" type="number" />
|
||||
</DemoContainer>
|
||||
|
||||
```vue
|
||||
<script setup>
|
||||
import { ref } from "vue";
|
||||
|
||||
const input = ref(0)
|
||||
</script>
|
||||
|
||||
<input v-model="input" type="number" />
|
||||
```
|
||||
Reference in New Issue
Block a user