Was first attempted inf1eaa06d5e, and reverted in0b3fe4fe8c. Now this is done in eslint-config-wikimedia for all repos. Change-Id: I9ee735eef40085b6373b565838d67e186e438657
34 lines
403 B
Vue
34 lines
403 B
Vue
<template>
|
|
<!-- Outer comment -->
|
|
<div class="mw-vue-test">
|
|
<!--
|
|
Inner comment
|
|
with multiple lines
|
|
and tabs
|
|
-->
|
|
<p>Hello\n</p>
|
|
<p>{{ hello }}</p>
|
|
<pre>
|
|
foo\
|
|
bar
|
|
</pre>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
module.exports = {
|
|
data: function () {
|
|
return {
|
|
hello: 'world'
|
|
};
|
|
}
|
|
};
|
|
</script>
|
|
|
|
<style lang="less">
|
|
.mw-vue-test {
|
|
&:hover {
|
|
background-color: red;
|
|
}
|
|
}
|
|
</style>
|