mirror of
https://github.com/super-linter/super-linter.git
synced 2024-11-15 13:25:07 -05:00
24 lines
286 B
Vue
24 lines
286 B
Vue
|
<template>
|
||
|
<div class="example">{{ msg }}</div>
|
||
|
</template>
|
||
|
|
||
|
<script>
|
||
|
export default {
|
||
|
data() {
|
||
|
return {
|
||
|
msg: "Hello world!",
|
||
|
};
|
||
|
},
|
||
|
};
|
||
|
</script>
|
||
|
|
||
|
<style>
|
||
|
.example {
|
||
|
color: red;
|
||
|
}
|
||
|
</style>
|
||
|
|
||
|
<custom1>
|
||
|
This could be e.g. documentation for the component.
|
||
|
</custom1>
|