← Back

vue/script-indent warning

Enforce consistent indentation in <script>

Examples

❌  Incorrect

<script>
export default {
    name: 'my-component',
};
</script>

✅  Correct

<script>
    export default {
        name: 'my-component',
    };
</script>