self closing element(tag)

Vue component self closing

  • ์ปดํฌ๋„ŒํŠธ ๋‚ด๋ถ€์— ์ž์‹์š”์†Œ๊ฐ€ ์—†๋Š” ๋‹จ์ผ ์ปดํฌ๋„ŒํŠธ๋Š” ์…€ํ”„ ํด๋กœ์ง•์ด ๊ฐ€๋Šฅํ•˜๋‹ค.

// Bad
<!-- In single-file components, string templates, and JSX -->
<MyComponent></MyComponent>
<!-- In DOM templates -->
<my-component />


// Good
<!-- In single-file components, string templates, and JSX -->
<MyComponent />
<!-- In DOM templates -->
<my-component></my-component>

Last updated