PyCharm创建vue例子
1.新增文件
MyVue.vue
文件内容如下:
<template>
<div class="hello">
<h1>{{msg}}</h1>
</div>
</template>
<script>
export default {
name: 'MyVue',
data () {
return {
msg: 'Hello MyVue'
}
}
}
</script>
<style scoped>
</style>
2.修改路由(router->index.js)
红色部分内容为新增
import Vue from 'vue'
import Router from 'vue-router'
import MyVue from '@/components/MyVue'
Vue.use(Router)
export default new Router({
routes: [
{
path: '/myvue',
name: 'MyVue',
component: MyVue
}
]
})
3.App.vue内容
<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>
3.浏览器访问
http://localhost:8080/#/myvue