diff --git a/src/style-guide/index.md b/src/style-guide/index.md
deleted file mode 100644
index 8f7b747f6..000000000
--- a/src/style-guide/index.md
+++ /dev/null
@@ -1,45 +0,0 @@
----
-outline: deep
----
-
-# Style Guide {#style-guide}
-
-::: warning Note
-This Vue.js Style Guide is outdated and needs to be reviewed. If you have any questions or suggestions, please [open an issue](https://github.com/vuejs/docs/issues/new).
-:::
-
-This is the official style guide for Vue-specific code. If you use Vue in a project, it's a great reference to avoid errors, bikeshedding, and anti-patterns. However, we don't believe that any style guide is ideal for all teams or projects, so mindful deviations are encouraged based on past experience, the surrounding tech stack, and personal values.
-
-For the most part, we also avoid suggestions about JavaScript or HTML in general. We don't mind whether you use semicolons or trailing commas. We don't mind whether your HTML uses single-quotes or double-quotes for attribute values. Some exceptions will exist however, where we've found that a particular pattern is helpful in the context of Vue.
-
-Finally, we've split rules into four categories:
-
-## Rule Categories {#rule-categories}
-
-### Priority A: Essential (Error Prevention) {#priority-a-essential-error-prevention}
-
-These rules help prevent errors, so learn and abide by them at all costs. Exceptions may exist, but should be very rare and only be made by those with expert knowledge of both JavaScript and Vue.
-
-- [See all priority A rules](./rules-essential)
-
-### Priority B: Strongly Recommended {#priority-b-strongly-recommended}
-
-These rules have been found to improve readability and/or developer experience in most projects. Your code will still run if you violate them, but violations should be rare and well-justified.
-
-- [See all priority B rules](./rules-strongly-recommended)
-
-### Priority C: Recommended {#priority-c-recommended}
-
-Where multiple, equally good options exist, an arbitrary choice can be made to ensure consistency. In these rules, we describe each acceptable option and suggest a default choice. That means you can feel free to make a different choice in your own codebase, as long as you're consistent and have a good reason. Please do have a good reason though! By adapting to the community standard, you will:
-
-1. Train your brain to more easily parse most of the community code you encounter
-2. Be able to copy and paste most community code examples without modification
-3. Often find new hires are already accustomed to your preferred coding style, at least in regards to Vue
-
-- [See all priority C rules](./rules-recommended)
-
-### Priority D: Use with Caution {#priority-d-use-with-caution}
-
-Some features of Vue exist to accommodate rare edge cases or smoother migrations from a legacy code base. When overused however, they can make your code more difficult to maintain or even become a source of bugs. These rules shine a light on potentially risky features, describing when and why they should be avoided.
-
-- [See all priority D rules](./rules-use-with-caution)
diff --git a/src/style-guide/rules-essential.md b/src/style-guide/rules-essential.md
deleted file mode 100644
index 0872dc499..000000000
--- a/src/style-guide/rules-essential.md
+++ /dev/null
@@ -1,426 +0,0 @@
-# Priority A Rules: Essential {#priority-a-rules-essential}
-
-::: warning Note
-This Vue.js Style Guide is outdated and needs to be reviewed. If you have any questions or suggestions, please [open an issue](https://github.com/vuejs/docs/issues/new).
-:::
-
-These rules help prevent errors, so learn and abide by them at all costs. Exceptions may exist, but should be very rare and only be made by those with expert knowledge of both JavaScript and Vue.
-
-## Use multi-word component names {#use-multi-word-component-names}
-
-User component names should always be multi-word, except for root `App` components. This [prevents conflicts](https://html.spec.whatwg.org/multipage/custom-elements.html#valid-custom-element-name) with existing and future HTML elements, since all HTML elements are a single word.
-
-
-
Bad
-
-```vue-html
-
-
-
-
-
-```
-
-
-
-
-
Good
-
-```vue-html
-
-
-
-
-
-```
-
-
-
-## Use detailed prop definitions {#use-detailed-prop-definitions}
-
-In committed code, prop definitions should always be as detailed as possible, specifying at least type(s).
-
-::: details Detailed Explanation
-Detailed [prop definitions](/guide/components/props#prop-validation) have two advantages:
-
-- They document the API of the component, so that it's easy to see how the component is meant to be used.
-- In development, Vue will warn you if a component is ever provided incorrectly formatted props, helping you catch potential sources of error.
- :::
-
-
-
-
-
Bad
-
-```js
-// This is only OK when prototyping
-props: ['status']
-```
-
-
-
-## Use keyed `v-for` {#use-keyed-v-for}
-
-`key` with `v-for` is _always_ required on components, in order to maintain internal component state down the subtree. Even for elements though, it's a good practice to maintain predictable behavior, such as [object constancy](https://bost.ocks.org/mike/constancy/) in animations.
-
-::: details Detailed Explanation
-Let's say you have a list of todos:
-
-
-
-```js
-const todos = ref([
- {
- id: 1,
- text: 'Learn to use v-for'
- },
- {
- id: 2,
- text: 'Learn to use key'
- }
-])
-```
-
-
-
-Then you sort them alphabetically. When updating the DOM, Vue will optimize rendering to perform the cheapest DOM mutations possible. That might mean deleting the first todo element, then adding it again at the end of the list.
-
-The problem is, there are cases where it's important not to delete elements that will remain in the DOM. For example, you may want to use `` to animate list sorting, or maintain focus if the rendered element is an ``. In these cases, adding a unique key for each item (e.g. `:key="todo.id"`) will tell Vue how to behave more predictably.
-
-In our experience, it's better to _always_ add a unique key, so that you and your team simply never have to worry about these edge cases. Then in the rare, performance-critical scenarios where object constancy isn't necessary, you can make a conscious exception.
-:::
-
-
-
Bad
-
-```vue-html
-
-
- {{ todo.text }}
-
-
-```
-
-
-
-
-
Good
-
-```vue-html
-
-
- {{ todo.text }}
-
-
-```
-
-
-
-## Avoid `v-if` with `v-for` {#avoid-v-if-with-v-for}
-
-**Never use `v-if` on the same element as `v-for`.**
-
-There are two common cases where this can be tempting:
-
-- To filter items in a list (e.g. `v-for="user in users" v-if="user.isActive"`). In these cases, replace `users` with a new computed property that returns your filtered list (e.g. `activeUsers`).
-
-- To avoid rendering a list if it should be hidden (e.g. `v-for="user in users" v-if="shouldShowUsers"`). In these cases, move the `v-if` to a container element (e.g. `ul`, `ol`).
-
-::: details Detailed Explanation
-When Vue processes directives, `v-if` has a higher priority than `v-for`, so that this template:
-
-```vue-html
-
-
- {{ user.name }}
-
-
-```
-
-Will throw an error, because the `v-if` directive will be evaluated first and the iteration variable `user` does not exist at this moment.
-
-This could be fixed by iterating over a computed property instead, like this:
-
-
-```
-
-Alternatively, we can use a `` tag with `v-for` to wrap the `
` element:
-
-```vue-html
-
-
-
- {{ user.name }}
-
-
-
-```
-
-:::
-
-
-
Bad
-
-```vue-html
-
-
- {{ user.name }}
-
-
-```
-
-
-
-
-
Good
-
-```vue-html
-
-
- {{ user.name }}
-
-
-```
-
-```vue-html
-
-
-
- {{ user.name }}
-
-
-
-```
-
-
-
-## Use component-scoped styling {#use-component-scoped-styling}
-
-For applications, styles in a top-level `App` component and in layout components may be global, but all other components should always be scoped.
-
-This is only relevant for [Single-File Components](/guide/scaling-up/sfc). It does _not_ require that the [`scoped` attribute](https://vue-loader.vuejs.org/guide/scoped-css.html) be used. Scoping could be through [CSS modules](https://vue-loader.vuejs.org/guide/css-modules.html), a class-based strategy such as [BEM](http://getbem.com/), or another library/convention.
-
-**Component libraries, however, should prefer a class-based strategy instead of using the `scoped` attribute.**
-
-This makes overriding internal styles easier, with human-readable class names that don't have too high specificity, but are still very unlikely to result in a conflict.
-
-::: details Detailed Explanation
-If you are developing a large project, working with other developers, or sometimes include 3rd-party HTML/CSS (e.g. from Auth0), consistent scoping will ensure that your styles only apply to the components they are meant for.
-
-Beyond the `scoped` attribute, using unique class names can help ensure that 3rd-party CSS does not apply to your own HTML. For example, many projects use the `button`, `btn`, or `icon` class names, so even if not using a strategy such as BEM, adding an app-specific and/or component-specific prefix (e.g. `ButtonClose-icon`) can provide some protection.
-:::
-
-
diff --git a/src/style-guide/rules-recommended.md b/src/style-guide/rules-recommended.md
deleted file mode 100644
index 26291169c..000000000
--- a/src/style-guide/rules-recommended.md
+++ /dev/null
@@ -1,314 +0,0 @@
-# Priority C Rules: Recommended {#priority-c-rules-recommended}
-
-::: warning Note
-This Vue.js Style Guide is outdated and needs to be reviewed. If you have any questions or suggestions, please [open an issue](https://github.com/vuejs/docs/issues/new).
-:::
-
-Where multiple, equally good options exist, an arbitrary choice can be made to ensure consistency. In these rules, we describe each acceptable option and suggest a default choice. That means you can feel free to make a different choice in your own codebase, as long as you're consistent and have a good reason. Please do have a good reason though! By adapting to the community standard, you will:
-
-1. Train your brain to more easily parse most of the community code you encounter
-2. Be able to copy and paste most community code examples without modification
-3. Often find new hires are already accustomed to your preferred coding style, at least in regards to Vue
-
-## Component/instance options order {#component-instance-options-order}
-
-**Component/instance options should be ordered consistently.**
-
-This is the default order we recommend for component options. They're split into categories, so you'll know where to add new properties from plugins.
-
-1. **Global Awareness** (requires knowledge beyond the component)
-
- - `name`
-
-2. **Template Compiler Options** (changes the way templates are compiled)
-
- - `compilerOptions`
-
-3. **Template Dependencies** (assets used in the template)
-
- - `components`
- - `directives`
-
-4. **Composition** (merges properties into the options)
-
- - `extends`
- - `mixins`
- - `provide`/`inject`
-
-5. **Interface** (the interface to the component)
-
- - `inheritAttrs`
- - `props`
- - `emits`
-
-6. **Composition API** (the entry point for using the Composition API)
-
- - `setup`
-
-7. **Local State** (local reactive properties)
-
- - `data`
- - `computed`
-
-8. **Events** (callbacks triggered by reactive events)
-
- - `watch`
- - Lifecycle Events (in the order they are called)
- - `beforeCreate`
- - `created`
- - `beforeMount`
- - `mounted`
- - `beforeUpdate`
- - `updated`
- - `activated`
- - `deactivated`
- - `beforeUnmount`
- - `unmounted`
- - `errorCaptured`
- - `renderTracked`
- - `renderTriggered`
-
-9. **Non-Reactive Properties** (instance properties independent of the reactivity system)
-
- - `methods`
-
-10. **Rendering** (the declarative description of the component output)
- - `template`/`render`
-
-## Element attribute order {#element-attribute-order}
-
-**The attributes of elements (including components) should be ordered consistently.**
-
-This is the default order we recommend for component options. They're split into categories, so you'll know where to add custom attributes and directives.
-
-1. **Definition** (provides the component options)
-
- - `is`
-
-2. **List Rendering** (creates multiple variations of the same element)
-
- - `v-for`
-
-3. **Conditionals** (whether the element is rendered/shown)
-
- - `v-if`
- - `v-else-if`
- - `v-else`
- - `v-show`
- - `v-cloak`
-
-4. **Render Modifiers** (changes the way the element renders)
-
- - `v-pre`
- - `v-once`
-
-5. **Global Awareness** (requires knowledge beyond the component)
-
- - `id`
-
-6. **Unique Attributes** (attributes that require unique values)
-
- - `ref`
- - `key`
-
-7. **Two-Way Binding** (combining binding and events)
-
- - `v-model`
-
-8. **Other Attributes** (all unspecified bound & unbound attributes)
-
-9. **Events** (component event listeners)
-
- - `v-on`
-
-10. **Content** (overrides the content of the element)
- - `v-html`
- - `v-text`
-
-## Empty lines in component/instance options {#empty-lines-in-component-instance-options}
-
-**You may want to add one empty line between multi-line properties, particularly if the options can no longer fit on your screen without scrolling.**
-
-When components begin to feel cramped or difficult to read, adding spaces between multi-line properties can make them easier to skim again. In some editors, such as Vim, formatting options like this can also make them easier to navigate with the keyboard.
-
-
diff --git a/src/style-guide/rules-strongly-recommended.md b/src/style-guide/rules-strongly-recommended.md
deleted file mode 100644
index ac59a9349..000000000
--- a/src/style-guide/rules-strongly-recommended.md
+++ /dev/null
@@ -1,886 +0,0 @@
-# Priority B Rules: Strongly Recommended {#priority-b-rules-strongly-recommended}
-
-::: warning Note
-This Vue.js Style Guide is outdated and needs to be reviewed. If you have any questions or suggestions, please [open an issue](https://github.com/vuejs/docs/issues/new).
-:::
-
-These rules have been found to improve readability and/or developer experience in most projects. Your code will still run if you violate them, but violations should be rare and well-justified.
-
-## Component files {#component-files}
-
-**Whenever a build system is available to concatenate files, each component should be in its own file.**
-
-This helps you to more quickly find a component when you need to edit it or review how to use it.
-
-
-
-## Single-file component filename casing {#single-file-component-filename-casing}
-
-**Filenames of [Single-File Components](/guide/scaling-up/sfc) should either be always PascalCase or always kebab-case.**
-
-PascalCase works best with autocompletion in code editors, as it's consistent with how we reference components in JS(X) and templates, wherever possible. However, mixed case filenames can sometimes create issues on case-insensitive file systems, which is why kebab-case is also perfectly acceptable.
-
-
-
-## Base component names {#base-component-names}
-
-**Base components (a.k.a. presentational, dumb, or pure components) that apply app-specific styling and conventions should all begin with a specific prefix, such as `Base`, `App`, or `V`.**
-
-::: details Detailed Explanation
-These components lay the foundation for consistent styling and behavior in your application. They may **only** contain:
-
-- HTML elements,
-- other base components, and
-- 3rd-party UI components.
-
-But they'll **never** contain global state (e.g. from a [Pinia](https://pinia.vuejs.org/zh/) store).
-
-Their names often include the name of an element they wrap (e.g. `BaseButton`, `BaseTable`), unless no element exists for their specific purpose (e.g. `BaseIcon`). If you build similar components for a more specific context, they will almost always consume these components (e.g. `BaseButton` may be used in `ButtonSubmit`).
-
-Some advantages of this convention:
-
-- When organized alphabetically in editors, your app's base components are all listed together, making them easier to identify.
-
-- Since component names should always be multi-word, this convention prevents you from having to choose an arbitrary prefix for simple component wrappers (e.g. `MyButton`, `VueButton`).
-
-- Since these components are so frequently used, you may want to simply make them global instead of importing them everywhere. A prefix makes this possible with Webpack:
-
- ```js
- const requireComponent = require.context(
- './src',
- true,
- /Base[A-Z]\w+\.(vue|js)$/
- )
- requireComponent.keys().forEach(function (fileName) {
- let baseComponentConfig = requireComponent(fileName)
- baseComponentConfig =
- baseComponentConfig.default || baseComponentConfig
- const baseComponentName =
- baseComponentConfig.name ||
- fileName.replace(/^.+\//, '').replace(/\.\w+$/, '')
- app.component(baseComponentName, baseComponentConfig)
- })
- ```
-
- :::
-
-
-
-## Tightly coupled component names {#tightly-coupled-component-names}
-
-**Child components that are tightly coupled with their parent should include the parent component name as a prefix.**
-
-If a component only makes sense in the context of a single parent component, that relationship should be evident in its name. Since editors typically organize files alphabetically, this also keeps these related files next to each other.
-
-::: details Detailed Explanation
-You might be tempted to solve this problem by nesting child components in directories named after their parent. For example:
-
-```
-components/
-|- TodoList/
- |- Item/
- |- index.vue
- |- Button.vue
- |- index.vue
-```
-
-or:
-
-```
-components/
-|- TodoList/
- |- Item/
- |- Button.vue
- |- Item.vue
-|- TodoList.vue
-```
-
-This isn't recommended, as it results in:
-
-- Many files with similar names, making rapid file switching in code editors more difficult.
-- Many nested sub-directories, which increases the time it takes to browse components in an editor's sidebar.
- :::
-
-
-
-## Order of words in component names {#order-of-words-in-component-names}
-
-**Component names should start with the highest-level (often most general) words and end with descriptive modifying words.**
-
-::: details Detailed Explanation
-You may be wondering:
-
-> "Why would we force component names to use less natural language?"
-
-In natural English, adjectives and other descriptors do typically appear before the nouns, while exceptions require connector words. For example:
-
-- Coffee _with_ milk
-- Soup _of the_ day
-- Visitor _to the_ museum
-
-You can definitely include these connector words in component names if you'd like, but the order is still important.
-
-Also note that **what's considered "highest-level" will be contextual to your app**. For example, imagine an app with a search form. It may include components like this one:
-
-```
-components/
-|- ClearSearchButton.vue
-|- ExcludeFromSearchInput.vue
-|- LaunchOnStartupCheckbox.vue
-|- RunSearchButton.vue
-|- SearchInput.vue
-|- TermsCheckbox.vue
-```
-
-As you might notice, it's quite difficult to see which components are specific to the search. Now let's rename the components according to the rule:
-
-```
-components/
-|- SearchButtonClear.vue
-|- SearchButtonRun.vue
-|- SearchInputExcludeGlob.vue
-|- SearchInputQuery.vue
-|- SettingsCheckboxLaunchOnStartup.vue
-|- SettingsCheckboxTerms.vue
-```
-
-Since editors typically organize files alphabetically, all the important relationships between components are now evident at a glance.
-
-You might be tempted to solve this problem differently, nesting all the search components under a "search" directory, then all the settings components under a "settings" directory. We only recommend considering this approach in very large apps (e.g. 100+ components), for these reasons:
-
-- It generally takes more time to navigate through nested sub-directories, than scrolling through a single `components` directory.
-- Name conflicts (e.g. multiple `ButtonDelete.vue` components) make it more difficult to quickly navigate to a specific component in a code editor.
-- Refactoring becomes more difficult, because find-and-replace often isn't sufficient to update relative references to a moved component.
- :::
-
-
-
-## Self-closing components {#self-closing-components}
-
-**Components with no content should be self-closing in [Single-File Components](/guide/scaling-up/sfc), string templates, and [JSX](/guide/extras/render-function#jsx-tsx) - but never in in-DOM templates.**
-
-Components that self-close communicate that they not only have no content, but are **meant** to have no content. It's the difference between a blank page in a book and one labeled "This page intentionally left blank." Your code is also cleaner without the unnecessary closing tag.
-
-Unfortunately, HTML doesn't allow custom elements to be self-closing - only [official "void" elements](https://www.w3.org/TR/html/syntax.html#void-elements). That's why the strategy is only possible when Vue's template compiler can reach the template before the DOM, then serve the DOM spec-compliant HTML.
-
-
-
-## Component name casing in templates {#component-name-casing-in-templates}
-
-**In most projects, component names should always be PascalCase in [Single-File Components](/guide/scaling-up/sfc) and string templates - but kebab-case in in-DOM templates.**
-
-PascalCase has a few advantages over kebab-case:
-
-- Editors can autocomplete component names in templates, because PascalCase is also used in JavaScript.
-- `` is more visually distinct from a single-word HTML element than ``, because there are two character differences (the two capitals), rather than just one (a hyphen).
-- If you use any non-Vue custom elements in your templates, such as a web component, PascalCase ensures that your Vue components remain distinctly visible.
-
-Unfortunately, due to HTML's case insensitivity, in-DOM templates must still use kebab-case.
-
-Also note that if you've already invested heavily in kebab-case, consistency with HTML conventions and being able to use the same casing across all your projects may be more important than the advantages listed above. In those cases, **using kebab-case everywhere is also acceptable.**
-
-
-
-## Component name casing in JS/JSX {#component-name-casing-in-js-jsx}
-
-**Component names in JS/[JSX](/guide/extras/render-function#jsx-tsx) should always be PascalCase, though they may be kebab-case inside strings for simpler applications that only use global component registration through `app.component`.**
-
-::: details Detailed Explanation
-In JavaScript, PascalCase is the convention for classes and prototype constructors - essentially, anything that can have distinct instances. Vue components also have instances, so it makes sense to also use PascalCase. As an added benefit, using PascalCase within JSX (and templates) allows readers of the code to more easily distinguish between components and HTML elements.
-
-However, for applications that use **only** global component definitions via `app.component`, we recommend kebab-case instead. The reasons are:
-
-- It's rare that global components are ever referenced in JavaScript, so following a convention for JavaScript makes less sense.
-- These applications always include many in-DOM templates, where [kebab-case **must** be used](#component-name-casing-in-templates).
- :::
-
-
-
-## Full-word component names {#full-word-component-names}
-
-**Component names should prefer full words over abbreviations.**
-
-The autocompletion in editors make the cost of writing longer names very low, while the clarity they provide is invaluable. Uncommon abbreviations, in particular, should always be avoided.
-
-
-
-## Prop name casing {#prop-name-casing}
-
-**Prop names should always use camelCase during declaration. When used inside in-DOM templates, props should be kebab-cased. Single-File Components templates and [JSX](/guide/extras/render-function#jsx-tsx) can use either kebab-case or camelCase props. Casing should be consistent - if you choose to use camelCased props, make sure you don't use kebab-cased ones in your application**
-
-
-
-```vue-html
-// for SFC - please make sure your casing is consistent throughout the project
-// you can use either convention but we don't recommend mixing two different casing styles
-
-// or
-
-```
-
-```vue-html
-// for in-DOM templates
-
-```
-
-
-
-## Multi-attribute elements {#multi-attribute-elements}
-
-**Elements with multiple attributes should span multiple lines, with one attribute per line.**
-
-In JavaScript, splitting objects with multiple properties over multiple lines is widely considered a good convention, because it's much easier to read. Our templates and [JSX](/guide/extras/render-function#jsx-tsx) deserve the same consideration.
-
-
-
Bad
-
-```vue-html
-
-```
-
-```vue-html
-
-```
-
-
-
-
-
Good
-
-```vue-html
-
-```
-
-```vue-html
-
-```
-
-
-
-## Simple expressions in templates {#simple-expressions-in-templates}
-
-**Component templates should only include simple expressions, with more complex expressions refactored into computed properties or methods.**
-
-Complex expressions in your templates make them less declarative. We should strive to describe _what_ should appear, not _how_ we're computing that value. Computed properties and methods also allow the code to be reused.
-
-
-
-```js
-// The complex expression has been moved to a computed property
-computed: {
- normalizedFullName() {
- return this.fullName.split(' ')
- .map(word => word[0].toUpperCase() + word.slice(1))
- .join(' ')
- }
-}
-```
-
-
-
-
-
-```js
-// The complex expression has been moved to a computed property
-const normalizedFullName = computed(() =>
- fullName.value
- .split(' ')
- .map((word) => word[0].toUpperCase() + word.slice(1))
- .join(' ')
-)
-```
-
-
-
-
-
-## Simple computed properties {#simple-computed-properties}
-
-**Complex computed properties should be split into as many simpler properties as possible.**
-
-::: details Detailed Explanation
-Simpler, well-named computed properties are:
-
-- **Easier to test**
-
- When each computed property contains only a very simple expression, with very few dependencies, it's much easier to write tests confirming that it works correctly.
-
-- **Easier to read**
-
- Simplifying computed properties forces you to give each value a descriptive name, even if it's not reused. This makes it much easier for other developers (and future you) to focus in on the code they care about and figure out what's going on.
-
-- **More adaptable to changing requirements**
-
- Any value that can be named might be useful to the view. For example, we might decide to display a message telling the user how much money they saved. We might also decide to calculate sales tax, but perhaps display it separately, rather than as part of the final price.
-
- Small, focused computed properties make fewer assumptions about how information will be used, so require less refactoring as requirements change.
- :::
-
-
-
-## Quoted attribute values {#quoted-attribute-values}
-
-**Non-empty HTML attribute values should always be inside quotes (single or double, whichever is not used in JS).**
-
-While attribute values without any spaces are not required to have quotes in HTML, this practice often leads to _avoiding_ spaces, making attribute values less readable.
-
-
-
Bad
-
-```vue-html
-
-```
-
-```vue-html
-
-```
-
-
-
-
-
Good
-
-```vue-html
-
-```
-
-```vue-html
-
-```
-
-
-
-## Directive shorthands {#directive-shorthands}
-
-**Directive shorthands (`:` for `v-bind:`, `@` for `v-on:` and `#` for `v-slot`) should be used always or never.**
-
-
diff --git a/src/style-guide/rules-use-with-caution.md b/src/style-guide/rules-use-with-caution.md
deleted file mode 100644
index d8afbc060..000000000
--- a/src/style-guide/rules-use-with-caution.md
+++ /dev/null
@@ -1,255 +0,0 @@
-# Priority D Rules: Use with Caution {#priority-d-rules-use-with-caution}
-
-::: warning Note
-This Vue.js Style Guide is outdated and needs to be reviewed. If you have any questions or suggestions, please [open an issue](https://github.com/vuejs/docs/issues/new).
-:::
-
-Some features of Vue exist to accommodate rare edge cases or smoother migrations from a legacy code base. When overused however, they can make your code more difficult to maintain or even become a source of bugs. These rules shine a light on potentially risky features, describing when and why they should be avoided.
-
-## Element selectors with `scoped` {#element-selectors-with-scoped}
-
-**Element selectors should be avoided with `scoped`.**
-
-Prefer class selectors over element selectors in `scoped` styles, because large numbers of element selectors are slow.
-
-::: details Detailed Explanation
-To scope styles, Vue adds a unique attribute to component elements, such as `data-v-f3f3eg9`. Then selectors are modified so that only matching elements with this attribute are selected (e.g. `button[data-v-f3f3eg9]`).
-
-The problem is that large numbers of element-attribute selectors (e.g. `button[data-v-f3f3eg9]`) will be considerably slower than class-attribute selectors (e.g. `.btn-close[data-v-f3f3eg9]`), so class selectors should be preferred whenever possible.
-:::
-
-
-
Bad
-
-```vue-html
-
-
-
-
-
-```
-
-
-
-
-
Good
-
-```vue-html
-
-
-
-
-
-```
-
-
-
-## Implicit parent-child communication {#implicit-parent-child-communication}
-
-**Props and events should be preferred for parent-child component communication, instead of `this.$parent` or mutating props.**
-
-An ideal Vue application is props down, events up. Sticking to this convention makes your components much easier to understand. However, there are edge cases where prop mutation or `this.$parent` can simplify two components that are already deeply coupled.
-
-The problem is, there are also many _simple_ cases where these patterns may offer convenience. Beware: do not be seduced into trading simplicity (being able to understand the flow of your state) for short-term convenience (writing less code).
-
-