Skip to content

Instantly share code, notes, and snippets.

@manniL
Created February 26, 2024 21:57
Show Gist options
  • Save manniL/cbd1dfb37ed6ab3c419585517e8008ae to your computer and use it in GitHub Desktop.
Save manniL/cbd1dfb37ed6ab3c419585517e8008ae to your computer and use it in GitHub Desktop.
sslides.md
````md magic-move
```vue
<script>
const value = ref(Math.random())
</script>
<template>
<div>{{ value }}</div>
</template>
```
```vue
<script>
const value = useState('unique-key', Math.random())
</script>
<template>
<div>{{ value }}</div>
</template>
```
````
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment