{"version":3,"file":"aside.mjs","names":[],"sources":["../../../../../../packages/components/container/src/aside.vue"],"sourcesContent":["<template>\n  <aside :class=\"ns.b()\" :style=\"style\">\n    <slot />\n  </aside>\n</template>\n\n<script lang=\"ts\" setup>\nimport { computed } from 'vue'\nimport { useNamespace } from '@element-plus/hooks'\n\nimport type { CSSProperties } from 'vue'\n\ninterface AsideProps {\n  /**\n   * @description width of the side section\n   */\n  width?: string | null\n}\n\ndefineOptions({\n  name: 'ElAside',\n})\nconst props = withDefaults(defineProps<AsideProps>(), {\n  width: null,\n})\n\nconst ns = useNamespace('aside')\nconst style = computed(\n  () =>\n    (props.width ? ns.cssVarBlock({ width: props.width }) : {}) as CSSProperties\n)\n</script>\n"],"mappings":""}