mirror of
https://gitlab2.federez.net/re2o/re2o
synced 2024-11-13 05:16:27 +00:00
20 lines
301 B
Vue
20 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>
|