gpt4 book ai didi

javascript - 布局组件(抽屉、工具栏等)不作为组件工作

转载 作者:行者123 更新时间:2023-11-30 20:46:34 27 4
gpt4 key购买 nike

我将 vue 与 vue-material 一起使用.

我目前正在使用 md-app 布置我的 Web 应用程序的主要结构。作为 md-[app-]drawer 的根目录, md-[app-]toolbarmd-[app-]content .

如果我将这些组件直接放在 md-app 中标签,他们工作。这看起来像这样:

<template>
<div class="md-layout-row">
<md-app>
<md-drawer>
<md-list>
<md-list-item>
<md-icon>people</md-icon>
<span class="md-list-item-text">Foo</span>
</md-list-item>

<md-list-item>
<md-icon>view_list</md-icon>
<span class="md-list-item-text">Bar</span>
</md-list-item>
</md-list>
</md-drawer>
</md-app>
</div>
</template>

但出于设计目的,我尝试将每个内部部分(在本例中为 md-drawer 标签)提取到自己的 vue 组件中。

问题

我有我的 Drawer现在组件,它看起来像这样:

<template>
<md-drawer>
<md-list>
<md-list-item>
<md-icon>people</md-icon>
<span class="md-list-item-text">Foo</span>
</md-list-item>

<md-list-item>
<md-icon>view_list</md-icon>
<span class="md-list-item-text">Bar</span>
</md-list-item>
</md-list>
</md-drawer>
</template>

..还有我的md-app (在导入组件 ofc 之后)现在看起来像这样:

<template>
<div class="md-layout-row">
<md-app>
<MyDrawer />
</md-app>
</div>
</template>

但这根本不会渲染抽屉。为什么是这样? Vue 是否额外包装组件可能会混淆 vue-material 的 css?有没有办法绕过/解决这个问题? .. 还是我只是用错了方式?

添加(编辑 1)

经过一些实验,我发现如果环绕 MyDrawer 是可行的带有 md-[app-]content 的标签标记,但这不会导致我正在寻找的布局。

我猜 md-app正在专门寻找这些组件,因为它不知道如何处理 MyDrawer标记它只是忽略它?虽然MyDrawer本质上是一个 md-drawer标记/组件?

添加(编辑 2)

我一直在阅读 DOM Template Parsing Caveats ,我认为这应该可行,但我还没有取得任何成功。我刚刚声明了一个 <md-drawer is="MyDrawer" />标记并移除主包装 md-drawer来自 MyDrawer 的标签组件

最佳答案

  1. 组件使用不当doc

md-active - type = Boolean. Option used to trigger the drawer visibility. Should be used with the .sync modifier. Default = false

用于 Drawer 的示例:

<md-drawer :md-active.sync="showNavigation">
...
</md-drawer>
  1. md-app不正确。见Component-Naming-Conventions

用于 md-app 的示例:

<md-app>
<my-drawer />
</md-app>

*注意 但在使用之前请看下一个答案

  1. 添加(编辑 1)- 不正确。

Any other tag passed as a direct child of the md-app tag will be ignored. The component will only look for those three tags and choose the right placement for them. Documentation

用于 md-app 的示例:

<md-app md-waterfall md-mode="fixed-last">
<md-app-toolbar class="md-large md-dense md-primary">
<div class="md-toolbar-row">
<div class="md-toolbar-section-start">
<md-button class="md-icon-button" @click="menuVisible = !menuVisible">
<md-icon>menu</md-icon>
</md-button>
<span class="md-title">My Title</span>
</div>

<div class="md-toolbar-section-end">
<md-button class="md-icon-button">
<md-icon>more_vert</md-icon>
</md-button>
</div>
</div>

<div class="md-toolbar-row">
<md-tabs class="md-primary">
<md-tab id="tab-home" md-label="Home"></md-tab>
<md-tab id="tab-pages" md-label="Pages"></md-tab>
</md-tabs>
</div>
</md-app-toolbar>

<md-app-drawer :md-active.sync="menuVisible">
<md-toolbar class="md-transparent" md-elevation="0">Navigation</md-toolbar>
<md-list>
<md-list-item>
<md-icon>move_to_inbox</md-icon>
<span class="md-list-item-text">Inbox</span>
</md-list-item>
</md-list>
</md-app-drawer>

<md-app-content>
<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Error quibusdam, non molestias et! Earum magnam, similique, quo recusandae placeat dicta asperiores modi sint ea repudiandae maxime? Quae non explicabo, neque.</p>
</md-app-content>
</md-app>
  1. 添加(编辑 2)- 不正确。 is在你的情况下无关紧要。 see using APIComponent-Naming-Conventions

只需使用标签:<md-drawer/>

更新

如何使用自定义 Drawermd-app .

drawer必须包裹在 md-app-drawer

例子

代码:

<md-app-drawer :md-active.sync="menuVisible">
<custom-drawer/>
</md-app-drawer>

App

Component

关于javascript - 布局组件(抽屉、工具栏等)不作为组件工作,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48636344/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com