đź“ť Edit page
âž• Add page
CodePen Vue template
Sample from the CodePen standard Vue template file.
Create your own here: codepen.io/pen/editor/vue
App.vue
<template> <div id="app"> <h1></h1> <p> Learn more with the <a href="https://vuejs.org/" target="_blank" rel="noopener" >Vue Docs & Resources</a >. </p> <button @click="doSomething">Say hello.</button> </div> </template> <script> export default { data() { return { message: "Welcome to Vue!" }; }, methods: { doSomething() { alert("Hello!"); } } }; </script> <style> #app { font-family: Avenir, Helvetica, Arial, sans-serif; text-align: center; color: #2c3e50; margin-top: 60px; } a, button { color: #4fc08d; } button { background: none; border: solid 1px; border-radius: 2em; font: inherit; padding: 0.75em 2em; } </style>
For CodePen specifically, you can use preprocessors inline and not just in the Settings. I don’t know what the use is as the code won’t work outside of CodePen, but anyway, here it is.
<template lang="pug">
</template>
<style lang="scss">
</style>