mirror of
https://gitlab2.federez.net/re2o/re2o
synced 2024-11-23 03:43:12 +00:00
21 lines
301 B
Vue
21 lines
301 B
Vue
|
<template>
|
||
|
<div class="hello">
|
||
|
<h3>
|
||
|
Hello World from Re2o VueJS
|
||
|
</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;
|
||
|
}
|
||
|
</style>
|