index.vue 363 B

123456789101112131415161718192021222324
  1. <template>
  2. <div>
  3. <page-header :title="$t('helm.text_5')" />
  4. <page-body>
  5. <chart-list :id="listId" />
  6. </page-body>
  7. </div>
  8. </template>
  9. <script>
  10. import ChartList from './components/List'
  11. export default {
  12. name: 'K8sChartIndex',
  13. components: {
  14. ChartList,
  15. },
  16. data () {
  17. return {
  18. listId: 'K8sChartList',
  19. }
  20. },
  21. }
  22. </script>