Advertisement
Guest User

Untitled

a guest
Jul 19th, 2019
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. <template>
  2. <public-layout>
  3. <component :is="homepageComponent"></component>
  4. </public-layout>
  5. </template>
  6.  
  7. export default {
  8. components: {
  9. PublicLayout
  10. },
  11.  
  12. computed: {
  13. homepageComponent () {
  14. return () => import(`@/pages/homepage/HomePage${this.activeCountryCode}`)
  15. }
  16. }
  17. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement