Skip to content

Instantly share code, notes, and snippets.

@Rich-Harris
Last active November 1, 2018 21:22
Show Gist options
  • Save Rich-Harris/5baca5f6c05b7adfd9f59fe3ebacb584 to your computer and use it in GitHub Desktop.
Save Rich-Harris/5baca5f6c05b7adfd9f59fe3ebacb584 to your computer and use it in GitHub Desktop.
πŸ€”πŸ€”πŸ€”
<div on:click="set({ count: count + 1 })">
{count} {double}
</div>
<script>
export default {
data() {
return { count: 0 };
},
computed: {
double: ({ count }) => count * 2
}
};
</script>
<script>
let count = 1;
const double = () => count * 2;
</script>
<div on:click="count += 1">
{count} {double()}
</div>
@Rich-Harris
Copy link
Author

Oh, and all this needs to work with standalone components as well as normal ones

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment