Repo for the search and displace core module including the interface to select files and search and displace operations to run on them. https://searchanddisplace.com
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

24 lines
461 B

3 years ago
  1. <template>
  2. <div class="header">
  3. <!-- Left side of header -->
  4. <div class="left">
  5. <Button class="p-button-text" label="Search and Displace" />
  6. </div>
  7. <!-- Right side of header -->
  8. <div class="right"></div>
  9. </div>
  10. </template>
  11. <script lang="ts">
  12. import Vue from 'vue';
  13. import Component from 'vue-class-component';
  14. @Component
  15. export default class AppHeader extends Vue {
  16. created() {}
  17. }
  18. </script>