mirror of
https://github.com/KevinMidboe/planetposen.git
synced 2026-02-12 20:39:11 +00:00
Created header and the start of a shopping cart.
This commit is contained in:
22
frontend/App.vue
Normal file
22
frontend/App.vue
Normal file
@@ -0,0 +1,22 @@
|
||||
<template>
|
||||
<div>
|
||||
<Header></Header>
|
||||
|
||||
<router-view />
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import Header from '@/components/Header';
|
||||
|
||||
export default {
|
||||
name: 'App',
|
||||
components: { Header }
|
||||
}
|
||||
</script>
|
||||
|
||||
<style lang="scss">
|
||||
@import './styles/normalize';
|
||||
@import './styles/icons';
|
||||
@import './styles/global';
|
||||
</style>
|
||||
Reference in New Issue
Block a user