Pattern: Missing scoped attribute
Issue: -
Enforces the <style>
tags to have the scoped
attribute. Note: This rule has been deprecated in favor of enforce-style-type
.
<template>
</template>
<!-- ✗ BAD -->
<style>
</style>
<!-- ✓ GOOD -->
<style scoped>
</style>