index.vue 251 B

12345678910111213
  1. <template>
  2. <div class="index-container">
  3. <version-information />
  4. </div>
  5. </template>
  6. <script>
  7. import VersionInformation from './components/VersionInformation'
  8. export default {
  9. name: 'Index',
  10. components: { VersionInformation },
  11. }
  12. </script>