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.

21 lines
362 B

3 years ago
  1. <template>
  2. <div class="footer">
  3. <div class="left">
  4. &copy; 2021 SearchAndDisplace
  5. </div>
  6. <div class="right">
  7. </div>
  8. </div>
  9. </template>
  10. <script lang="ts">
  11. import Vue from 'vue';
  12. import Component from 'vue-class-component';
  13. @Component
  14. export default class AppFooter extends Vue {
  15. created() {}
  16. }
  17. </script>