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