Home / Function/ isRenderableAttr() — vue Function Reference

isRenderableAttr() — vue Function Reference

Architecture documentation for the isRenderableAttr() function in util.ts from the vue codebase.

Entity Profile

Dependency Diagram

graph TD
  dfde1ef6_e1eb_f805_b004_15ea50f02cb9["isRenderableAttr()"]
  c0b33b28_c53f_db55_fab1_7f6054379fe4["renderDOMProps()"]
  c0b33b28_c53f_db55_fab1_7f6054379fe4 -->|calls| dfde1ef6_e1eb_f805_b004_15ea50f02cb9
  fa544f11_0c48_ef02_0a1e_2942ccbf1f8a["genDOMPropSegments()"]
  fa544f11_0c48_ef02_0a1e_2942ccbf1f8a -->|calls| dfde1ef6_e1eb_f805_b004_15ea50f02cb9
  09d9ca98_b554_d9cf_dd56_2a6d9da7d413["renderDOMProps()"]
  09d9ca98_b554_d9cf_dd56_2a6d9da7d413 -->|calls| dfde1ef6_e1eb_f805_b004_15ea50f02cb9
  style dfde1ef6_e1eb_f805_b004_15ea50f02cb9 fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

packages/server-renderer/src/util.ts lines 25–29

const isRenderableAttr = (name: string): boolean => {
  return (
    isAttr(name) || name.indexOf('data-') === 0 || name.indexOf('aria-') === 0
  )
}

Subdomains

Frequently Asked Questions

What does isRenderableAttr() do?
isRenderableAttr() is a function in the vue codebase.
What calls isRenderableAttr()?
isRenderableAttr() is called by 3 function(s): genDOMPropSegments, renderDOMProps, renderDOMProps.

Analyze Your Own Codebase

Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.

Try Supermodel Free