<!-- Before proposing rule changes, please make sure it hasn't been posted already. You can see all open propositions here: https://github.com/vuejs/eslint-plugin-vue/issues?q=is%3Aopen+is%3Aissue+label%3A%22new+rule+proposition%22 --> Found similar issue: https://github.com/vuejs/eslint-plugin-vue/issues/1633 **What rule do you want to change?** vue/singleline-html-element-content-newline **Does this change cause the rule to produce more or fewer warnings?** don't know **How will the change be implemented? (New option, new default behavior, etc.)?** don't know **Please provide some example code that this change will affect:** <!-- Put your code examples here --> ```vue <router-link :to="parent">test</router-link> ``` **What does the rule currently do for this code?** ```vue <router-link :to="parent"> test </router-link> ``` It adds whitespace, which leads to rendering the link in browser as "test_" (extra underlining until closing the tag) **What will the rule do after it's changed?** stop adding whitespace: ```vue <router-link :to="parent">test</router-link> ``` **Additional context** <!-- Add any other context or screenshots about the feature request here. -->