首页 > 代码库 > vue2.0
vue2.0
mian.js
import Vue from ‘vue‘ import App11 from ‘./App‘ Vue.config.productionTip = false /* eslint-disable no-new */ new Vue({ el: ‘#app2‘, //对应index.html的id,<div id="app2"></div> template: ‘<App11/>‘, //import App11 from ‘./App‘ , components: { App11 } , template: ‘<App11/>‘ : 3个一样。 components: { App11 } })
App.vue
<template> <div id="aaa"> <!-- 这个id没有,用于写样式 --> <img src="./assets/logo.png"> <hello></hello> </div> </template> <script> import Hello from ‘./components/Hello‘ export default { components: { Hello } } </script> <style> #aaa { 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>
index,html
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>t1</title> </head> <body> <div id="app2"></div> <!-- new Vue({ el: ‘#app2‘ }) --> </body> </html>
vue2.0
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。