1234567891011121314151617181920212223242526272829303132333435363738 |
- <template>
- <div
- class="home"
- >
- {{ $env.BASE_URL }}
- </div>
- </template>
- <script>
- export default {
- name: 'HomeView',
- data() {
- return {
- }
- },
- computed: {
- ...mapState([
- ]),
- },
- mounted() {
- console.log(process.env)
- this.$mitt.emit('test', { msg: 'home mounted' })
- },
- unmounted() {
- },
- methods: {
- ...mapMutations([
- ]),
- },
- }
- </script>
- <style lang="less" scoped>
- .home {
- width: 100%;
- height: 100%;
- }
- </style>
|