Skip to content

Instantly share code, notes, and snippets.

@TheAlexLichter
Created February 26, 2024 21:57
Show Gist options
  • Select an option

  • Save TheAlexLichter/cbd1dfb37ed6ab3c419585517e8008ae to your computer and use it in GitHub Desktop.

Select an option

Save TheAlexLichter/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