vue jsx
2021/12/27 23:14:39
本文主要是介绍vue jsx,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
安装vue
cnpm i -g @vue/cli cnpm i -g @vue/cli-service-global
创建基本文件
- main.js
import Vue from 'vue'; import App from './App'; new Vue({ el: '#app', render: h => h(App) })
- App.vue
<template> <div> <labelx :t="2">你好,中国</labelx> </div> </template> <script> import labelx from './component/label.js' export default { components: { labelx } } </script>
- label.js
export default { props: { t: {} }, render() { let tag = 'h' + this.t; return ( <tag>{this.$slots.default}</tag> ) } }
这篇关于vue jsx的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!
- 2024-12-29如何在 Vue2 的 uni-app 项目中使用 npm ?-icode9专业技术文章分享
- 2024-12-29uni-app vue2微信小程序项目在哪里打开终端并使用npm?-icode9专业技术文章分享
- 2024-12-29怎么在 uni-app Vue2 项目中全局引入 Vant Weapp?-icode9专业技术文章分享
- 2024-12-29uni-app vue2微信小程序项目如何在main.js中全局引入vant?-icode9专业技术文章分享
- 2024-12-28Vue入门教程:从零开始搭建第一个Vue项目
- 2024-12-28Vue CLI入门指南:快速搭建Vue项目
- 2024-12-28Vue3基础知识入门教程
- 2024-12-28Vue3公共组件开发与使用入门教程
- 2024-12-28Vue CLI学习:新手入门教程
- 2024-12-28Vue CLI学习:轻松入门与实践指南