当前位置: 首页 > news >正文

day01

Hm-Footer.vue

<template><div class="hm-footer">我是hm-footer</div></template><script>export default {}</script><style>.hm-footer{height:100px;line-height:100px;text-align:center;font-size:30px;background-color:#4f81bd;color:white;}</style>

 Hm-Main.vue

<template><div class="hm-Main">我是hm-Main</div>
</template><script>
export default {}
</script><style>
.hm-Main{height:400px;line-height:400px;text-align:center;font-size:30px;background-color:#f79646;color:white;margin:20px 0;
}
</style>

Hm-Header.vue 

<template><div class="hm-header">我是hm-header</div>
</template><script>
export default {}
</script><style>
.hm-header{height:100px;line-height:100px;text-align:center;font-size:30px;background-color:#8064a2;color:white;
}
</style>
<template><div class="App"><!-- 头部组件 --><HmHeader></HmHeader><!-- 主体组件 --><HmMain></HmMain><!-- 底部组件 --><HmFooter></HmFooter><!-- 创建组件、导入、注册使用 --></div>
</template><script>
import HmHeader from './components/HmHeader.vue';
import HmFooter from './components/Hm-Footer.vue';
import HmMain from './components/Hm-Main.vue';
export default {components:{//'组件名':组件对象HmHeader:HmHeader,HmFooter,HmMain}}
</script><style>
.App{width:600px;height:700px;background-color:#87ceed;margin:0 auto;padding: 20px;/* 内边距 */}</style>

main.js知识点 

//文件核心作用:导入App.vue,基于App.vue创建结构渲染index.html
//1.导入Vue核心包
import Vue from 'vue'
//2.导入App.vue根组件
import App from './App.vue'//提示:当前处于什么环境(生产环境/开发环境)
Vue.config.productionTip = false//3.Vue实例化,提供render方法->基于App.vue创建结构渲染index.html
new Vue({//el:'#app',作用:和.$mount('选择器')作用一致,用于指定Vue所管理容器//render: h => h(App),render:(createElement)=>{//基于App创建元素结构return createElement(App)}
}).$mount('#app')


http://www.mrgr.cn/news/78195.html

相关文章:

  • C++软件设计模式之组合模式与其他模式的协作举例
  • 我谈离散傅里叶变换的补零
  • CodeIgniter如何手动将模型连接到数据库
  • 网络协议之DNS
  • MySQL原理简介—10.SQL语句和执行计划
  • AI安全:从现实关切到未来展望
  • Golang面经
  • Pgsql:json字段查询与更新
  • 基于vite创建的react18项目的单元测试
  • 2023.11 Graph-Enriched Biomedical Language Models: A Research Proposal
  • localStorage缓存 接口 配置
  • 二,[ACTF2020 新生赛]Include1感谢 Y1ng 师傅供题。
  • Unity项目性能优化列表
  • 0-1背包问题(1):贪心算法
  • 【Unity踩坑】Unity中父对象是非均匀缩放时出现倾斜或剪切现象
  • Unity UGUI原理剖析
  • 【mac】终端左边太长处理,自定义显示名称(terminal路径显示特别长)
  • Flink学习连载文章8--时间语义
  • Flink cdc同步增量数据timestamp字段相差八小时(分析|解决)不是粘贴复制的!
  • ESP8266 + DHT11 + OLED0.96温湿度中文显示和MQTT(二)
  • 面试学习准备
  • 学习与理解LabVIEW中多列列表框项名和项首字符串属性
  • 旋转磁体产生的场 - 实验视频资源下载
  • 东方微电嵌入式面试题及参考答案
  • Jir 关联 agit
  • 上下文信息、全局信息、局部信息