mirror of
https://github.com/sudoxnym/habitica.git
synced 2026-08-01 07:21:15 +00:00
22 lines
276 B
Vue
22 lines
276 B
Vue
|
|
<template lang="pug">
|
||
|
|
.hello
|
||
|
|
h1 {{ msg }}
|
||
|
|
</template>
|
||
|
|
|
||
|
|
<script>
|
||
|
|
export default {
|
||
|
|
data () {
|
||
|
|
return {
|
||
|
|
msg: 'Hello Vue!',
|
||
|
|
};
|
||
|
|
},
|
||
|
|
};
|
||
|
|
</script>
|
||
|
|
|
||
|
|
<!-- Add "scoped" attribute to limit CSS to this component only -->
|
||
|
|
<style scoped>
|
||
|
|
h1 {
|
||
|
|
color: #42b983;
|
||
|
|
}
|
||
|
|
</style>
|