You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

21 lines
334 B

<template>
<div class="hello">
<h3>
One Hello World wasn't enough :p
</h3>
</div>
</template>
<script>
export default {
name: "HelloWorld"
};
</script>
<!-- Add "scoped" attribute to limit SCSS to this component only -->
<style scoped lang="scss">
h3 {
margin: 40px 0 0;
background-color: #ff0000;
}
</style>