vault/ui/app/components/not-found.js
Vault Automation 0c6c13dd38
license: update headers to IBM Corp. (#10229) (#10233)
* license: update headers to IBM Corp.
* `make proto`
* update offset because source file changed

Signed-off-by: Ryan Cragun <me@ryan.ec>
Co-authored-by: Ryan Cragun <me@ryan.ec>
2025-10-21 15:20:20 -06:00

27 lines
538 B
JavaScript

/**
* Copyright IBM Corp. 2016, 2025
* SPDX-License-Identifier: BUSL-1.1
*/
import { service } from '@ember/service';
import Component from '@glimmer/component';
/**
* @module NotFound
* NotFound components are used to show a message that the route was not found.
*
* @example
* ```js
* <NotFound @model={{this.model}} />
* ```
* @param {object} model - routes model passed into the component.
*/
export default class NotFound extends Component {
@service router;
get path() {
return this.router.currentURL;
}
}