mirror of
https://github.com/super-linter/super-linter.git
synced 2024-11-09 18:43:34 -05:00
1d12a31fce
- CSS, Sass, SCSS - HTML - JSON - JSX - GraphQL - Vue - YAML
23 lines
282 B
Vue
23 lines
282 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>
|