mirror of
https://gitlab2.federez.net/re2o/re2o
synced 2024-11-22 19:33:11 +00:00
21 lines
No EOL
334 B
Vue
21 lines
No EOL
334 B
Vue
<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> |