mirror of
https://github.com/nasa/openmct.git
synced 2024-12-19 13:17:53 +00:00
20 lines
207 B
Vue
20 lines
207 B
Vue
|
<template>
|
||
|
<div class="example">{{ msg }}</div>
|
||
|
</template>
|
||
|
|
||
|
<script>
|
||
|
export default {
|
||
|
data () {
|
||
|
return {
|
||
|
msg: 'Hello world!'
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
</script>
|
||
|
|
||
|
<style>
|
||
|
.example {
|
||
|
color: red;
|
||
|
}
|
||
|
</style>
|