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.
 
 
 
 
 
 

15 line
471 B

  1. import Vue from 'vue';
  2. import PasswordGenerator from './components/password-generator.vue';
  3. import BootstrapHr from './components/bootstrap-hr.vue';
  4. import LesspassFeatures from './components/lesspass-features.vue';
  5. import Footer from './components/footer.vue';
  6. new Vue({
  7. el: 'body',
  8. components: {
  9. passwordGenerator: PasswordGenerator,
  10. lesspassFeatures: LesspassFeatures,
  11. lesspassFooter: Footer,
  12. bootstrapHr: BootstrapHr
  13. }
  14. });