open-vault/ui/app/components/not-found.js

18 lines
359 B
JavaScript
Raw Normal View History

/**
* Copyright (c) HashiCorp, Inc.
* SPDX-License-Identifier: MPL-2.0
*/
import { inject as service } from '@ember/service';
import { alias } from '@ember/object/computed';
import Component from '@ember/component';
2018-04-03 14:16:57 +00:00
export default Component.extend({
2018-04-03 14:16:57 +00:00
// public
model: null,
tagName: '',
router: service(),
path: alias('router.currentURL'),
2018-04-03 14:16:57 +00:00
});