openmct/example/simpleVuePlugin/HelloWorld.vue

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

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>