vue project running processes

vue of running processes

index.html-->main.js-->App.vue-->router/index.js

1.index.html (project entry page)

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width,initial-scale=1.0">
<title>vue-test</title>
</head>
<body>
<div id="app">
<router-view></router-view>
</div>
</body>
</html>

 


2.main.js (core file)

import Vue from 'vue'
import App from './App'
import router from './router'

Vue.config.productionTip = false

new Vue({
el: '#app',
router,
components: { App },
template: '<App/>'
})

 

3.App.vue (project entry file)

<template>
<div id="app">
<img src="./assets/logo.png">
<router-view/>
</div>
</template>

<script>
export default {
name: 'App'
}
</script>

<style>
#app {
font-family: 'Avenir', Helvetica, Arial, sans-serif;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
text-align: center;
color: #2c3e50;
margin-top: 60px;
}
</style>

 

4.router - index.js (routing component)

import Vue from 'vue'
import Router from 'vue-router'
import HelloWorld from '@/components/HelloWorld'

Vue.use(Router)

export default new Router({
routes: [
{
path: '/',
name: 'HelloWorld',
component: HelloWorld
}
]
})

 

vue-router

vue vue-router is the core plug, use vue-router, we can map a route to the assembly and tell vue-router where they are rendered

Guess you like

Origin www.cnblogs.com/tdtdttd/p/11079028.html