DEV Community

Discussion on: Vue Composition API vs. React Hooks

Collapse
 
mitya profile image
Dima

Defining the state Vue 2022 (with script setup)

<script setup>
import { ref } from 'vue'

const name = ref('Apple');
const price = ref(20);
const quantity = ref(100);
</script>
Enter fullscreen mode Exit fullscreen mode