mirror of https://github.com/rancher/dashboard.git
22 lines
693 B
Vue
22 lines
693 B
Vue
<script lang="ts">
|
|
import ExplorerProjectsNamespaces from '@shell/components/ExplorerProjectsNamespaces.vue';
|
|
import { PRODUCT_NAME as HARVESTER_PRODUCT } from '../../../config/harvester';
|
|
import { MANAGEMENT } from '~/shell/config/types';
|
|
export default {
|
|
components: { ExplorerProjectsNamespaces },
|
|
data() {
|
|
return {
|
|
createProjectLocation: {
|
|
name: `${ HARVESTER_PRODUCT }-c-cluster-resource-create`,
|
|
params: {
|
|
product: HARVESTER_PRODUCT,
|
|
resource: MANAGEMENT.PROJECT
|
|
},
|
|
}
|
|
};
|
|
}
|
|
};
|
|
</script>
|
|
|
|
<template><ExplorerProjectsNamespaces v-bind="$attrs" :ovverride-create-project-location="createProjectLocation" /></template>
|