Pattern: Space around equal sign in attribute
Issue: -
This rule disallow spaces around equal signs in attribute.
<template>
<!-- ✗ BAD -->
<div class = "item"></div>
<!-- ✓ GOOD -->
<div class="item"></div>
</template>
{
"vue/no-spaces-around-equal-signs-in-attribute": ["error"]
}
```.
## Further Reading
* [eslint-plugin-vue - no-spaces-around-equal-signs-in-attribute](https://eslint.vuejs.org/rules/no-spaces-around-equal-signs-in-attribute.html)