warning
vue/script-indentEnforce consistent indentation in <script>
Examples
❌ Incorrect
<script>
export default {
name: 'my-component',
};
</script>
✅ Correct
<script>
export default {
name: 'my-component',
};
</script>
Enforce consistent indentation in <script>
❌ Incorrect
<script>
export default {
name: 'my-component',
};
</script>
✅ Correct
<script>
export default {
name: 'my-component',
};
</script>