- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
在我的 Nuxt 应用程序中,我有一个属性列表,单击时我想打开相应的属性页面 (/properties/_slug.vue)
作为任何页面前面的模态用户已开启。
dribble.com是我尝试重新创建的功能的一个确切示例。
如果从 /
单击属性链接,url 应该是 /properties/slug-of-prop
,当我点击关闭按钮或后退按钮时,它应该关闭模式并将 url 返回到单击之前的状态。此外,我希望能够访问 localhost:3000/properties/slug-of-prop
并让它显示 properties
列表,其中模态在前面
我的文件结构是:
/pages
--index.vue
--/properties
----index.vue
----_slug.vue
我已经尝试过此处列出的解决方案:https://stackoverflow.com/a/60793173/2232797但是,它不会删除点击后退按钮时的模态。此外,我还尝试实现这个 vue.js 解决方案 here通过使用中间件将 showModal
添加为我的路由的参数,但它使用的是 router-view
我真的很难理解它是如何工作的。
这是我的 /properties/index.vue
的样子:
<template>
<section class="container-fluid">
<!-- property cards -->
<div class="info-row scroll-row border-bottom">
<nuxt-link
v-for="property in properties"
:key="property"
:to="`properties/${property.uid}`"
tag="div"
>
{{ property.uid }}
</nuxt-link>
</div>
<div v-if="showModal" class="modal-route">
<div class="modal-content">
<router-view></router-view>
</div>
</div>
</section>
</template>
<script>
import { store } from '@/store/index.js'
export default {
computed: {
showModal() {
return store.showModal
},
},
.....
谁能给我指出正确的方向?我显然是这方面的新手,所以非常感谢任何帮助!
最佳答案
有一种更简单的方法来处理这个问题,无需中间件的大惊小怪或手动扰乱历史记录。
我在这里创建了一个 CodeSandbox 项目,并尽量使其与您的设置相似:https://codesandbox.io/s/wizardly-knuth-rolrn .检查一下,它包含我将在一个工作示例中解释的所有内容。
您应该做的第一件事是查看 Nuxt Child .它基本上是 router-view
,但专为 Nuxt 设计。
<div class="info-row scroll-row border-bottom"
@click.prevent.stop
>
<nuxt-link
v-for="property in properties"
:key="property.uid"
:to="`/properties/${property.uid}`"
tag="div"
style="text-style: underline"
>{{ property.uid }}</nuxt-link>
</div>
<div v-if="showModal" class="modal-route">
<div class="modal-content">
<nuxt-child></nuxt-child>
</div>
</div>
这里有几个注释:
@click.prevent.stop
来取消传播点击事件,这会触发卡片监听器to
前加上了/。丢失时,路由将附加到地址栏中已有的任何路由。key
切换为 property.uid
,因为它应该是唯一的。nuxt child 工作的一件非常重要的事情:包含子元素的文件夹必须与父文件名同名。在这个例子中,我使用了 index.vue
和 index/
。 Index.vue 是父路由,/index
中的所有内容都被认为是可以渲染的子路由。
这为您提供了如下文件夹结构:
/pages
index.vue
/index
/properties
_slug.vue
接下来要更改的是 showModal
方法。我正在使用 this.$route.matched.length
来确定是否有一个子组件。
computed: {
showModal() {
return this.$route.matched.length;
}
}
slug 本身是这里最复杂的部分,这只是因为我实现示例监听器的方式。不过,我相信您还有其他一些方法可以处理此问题。
<template>
<div ref="cardContainer" style="padding: 20px; border: 1px solid black" >I'm a card for property {{this.$route.params.slug }}</div>
</template>
<script>
export default {
mounted() {
// Attach listeners for handling clicks outside the card, while preventing propagation
// of clicks in the cards
this.$refs.cardContainer.addEventListener('click', this.stopPropagation)
document.body.addEventListener('click', this.closeModal)
},
beforeDestroy() {
// Make sure to cleanup!
this.$refs.cardContainer.removeEventListener('click', this.stopPropagation)
document.body.removeEventListener('click', this.closeModal)
},
methods: {
// Prevent clicking inside the card from triggering the closeModal
stopPropagation(e) {
e.stopPropagation()
},
closeModal() {
// You can also do this.$router.push('/') to preserve the history
this.$router.replace('/')
}
}
}
</script>
关于vue.js - Nuxt : Open component/page as modal with dedicated url like dribble. com,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/62962555/
我有以下代码。我无法理解应如何实现 ProjectCardDescription 组件,以便能够在 ProjectCard 组件中传递其描述 我尝试过这个,但得到一个空组件: import React
我们正试图从 styled-components 项目中找出以下问题的原因:https://github.com/styled-components/styled-components/issues/
将所有文件从 jsx 更改为 tsx 后,出现此错误: ./src/components/index.js Module not found: Can't resolve './Header' in
我正在努力遵循以下 vuejs 应用场景动态组件 + 异步组件模式。一切正常,但仍然只有一个问题:我怎样才能访问通过传入的 Prop 数据 请看现场 fiddle : https://jsfiddl
我已经明白了Difference between React Component and React Element , 使用 JSX 基本上调用 React.createElement它返回一个元素
我最近开始使用 JSX 元素语法而不是调用函数,因为它使代码更漂亮。但看起来又不太一样。令人惊讶的是,因为在 App.js 中,函数调用会导致无限循环(并引发错误),但 JSX 元素可以工作。在 Da
通过少量渲染来构建嵌套组件系统的好方法是什么?请参阅下面带有主要问题(“如何...”)的所需代码: tab.vue(子组件) export default {
我正在编写一个轻量级游戏引擎,并且在为它做一些研究的同时,我遇到了许多令人信服的文章,它们提倡通过“组件集合”模型而不是“从具体类继承”模型来实现游戏对象。有很多优点: 可以使用数据组合对象 驱动设计
类型‘AbstractControl’上不存在属性‘Controls’。
考虑以下示例: function Travel(props) { return ( ) } function Welcom
我刚刚加入了一个 React Native 项目,在那里我经常看到扩展 React.Component 和 Component 本身的类。 示例: 类 SomeView 扩展了 React.Compo
我见过两种访问 Component 的方法: import React from 'react'; class Foo extends React.Component { ... } 和 im
我有一个库 jar,我想将其提供给许多应用程序。我想要的行为是在库中创建一个通用的 spring 组件类。如果在应用程序中,没有扩展相同的组件,则使用公共(public)组件;如果它在应用程序中扩展,
所以我正在制作一个游戏,我有 EnemyAI 以及 player,它们都扩展了 JPanel。世界有一个 null 布局,所以我正在使用 setBounds(); 来“移动”(我实际上只是移动世界图像
在 styled-component 中,您如何决定是应该使用插值函数来修改组件(通过传递 props )还是扩展现有组件。例如: const Button = styled.button`
我搜索并获取了以下信息。 请添加您的信息 h:commandbutton 与 a4j:commandButton 相同,唯一的区别是 a4j:commandButton 有额外的 ajax 请求。 a
我目前在一个项目中,我们有一个动态“表单”/内容模型,其中我们有一个包含字段和占位符的模块,占位符可以包含更多模块,为我们提供递归/灵活的数据模型. 现在为了渲染这个,我们创建了一个组件来渲染模块,动
我是 React 的新手,正在尝试设置一个 Bootstrap 模式来显示警报消息。 在我的父 App.js 文件中,我有一个错误处理程序,它向 Modal.js 组件发送一个触发模态显示的 Prop
通过 background-color:red 获得主页组件写入其 scss,然后使用 background-color:green 获取用户组件写入它的 scss。我启动我的应用程序,我在家,背景是
我有这个基本的应用程序,其中一些组件具有公共(public) load 方法。对于某些操作,我想在当前 svelte:component 上调用该方法,但我不知道如何获取对组件实例的引用。如何做到这一
我是一名优秀的程序员,十分优秀!