openmct/example/simpleVuePlugin/HelloWorld.vue

20 lines
208 B
Vue
Raw Normal View History

<template>
2023-06-23 20:52:03 +00:00
<div class="example">{{ msg }}</div>
</template>
<script>
export default {
2023-06-23 20:52:03 +00:00
data() {
return {
msg: 'Hello world!'
};
}
};
</script>
<style>
.example {
color: red;
}
</style>