Last active
November 1, 2018 21:22
-
-
Save Rich-Harris/5baca5f6c05b7adfd9f59fe3ebacb584 to your computer and use it in GitHub Desktop.
π€π€π€
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div on:click="set({ count: count + 1 })"> | |
{count} {double} | |
</div> | |
<script> | |
export default { | |
data() { | |
return { count: 0 }; | |
}, | |
computed: { | |
double: ({ count }) => count * 2 | |
} | |
}; | |
</script> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<script> | |
let count = 1; | |
const double = () => count * 2; | |
</script> | |
<div on:click="count += 1"> | |
{count} {double()} | |
</div> |
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
In fact SSR more generally is a big unknown. In this new world, the initial setup code (which is currently what we'd call
oncreate
) always runs, on both client and server.onchange
andonrender
(or whatever) would never run.ondestroy
could either be a noop (in which case any mount code would have to be wrapped inif (process.browser)
or something), or it could be called immediately following render.It's possible that we'd lose the API distinction between client and server. We could also consider introducing async SSR rendering. Lot of possibilities, lot of stuff to figure out.