mirror of
https://github.com/nasa/openmct.git
synced 2024-12-20 13:43:09 +00:00
92ba103f45
Co-authored-by: Andrew Henry <akhenry@gmail.com>
20 lines
222 B
Vue
20 lines
222 B
Vue
<template>
|
|
<div class="example">{{ msg }}</div>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
data() {
|
|
return {
|
|
msg: 'Hello world!'
|
|
}
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style>
|
|
.example {
|
|
color: red;
|
|
}
|
|
</style>
|