Created
April 14, 2022 12:09
-
-
Save xiongchengqing/03618aa908777bdaf6c610277a4cedd0 to your computer and use it in GitHub Desktop.
vue3-slot-access
This file contains hidden or 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
<template> | |
<p>{{ greeting }} World!</p> | |
</template> | |
<script> | |
export default { | |
data() { | |
return { | |
greeting: 'Hello' | |
} | |
} | |
} | |
</script> | |
<style> | |
body { | |
font-family: sans-serif; | |
} | |
</style> | |
This file contains hidden or 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
{ | |
"scripts": [], | |
"styles": [] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment