History.vue 209 B

123456789101112131415
  1. <template>
  2. <div id="history">
  3. <h2>Historique de consultation</h2>
  4. </div>
  5. </template>
  6. <script>
  7. export default {
  8. name: 'History',
  9. data: () => ({
  10. })
  11. }
  12. </script>
  13. <style lang="scss" scoped>
  14. </style>