在vue中使用jsx

2022-08-21 14:14:26 浏览数 (1)

首先是官方文档

vue2的:https://cn.vuejs.org/v2/guide/render-function.html#JSX

vue3的:https://v3.cn.vuejs.org/guide/render-function.html#jsx

我们这里以vue2举例:

先使用render函数写一个最简单的jsx组件

代码语言:javascript复制
<script>
export default {
    render() {
        return <div>Hello World</div>
    }
}
</script>

<style>
</style>

注意此处不能有template标签,其他的该咋用就咋用

还有的区别在这个链接里:https://github.com/vuejs/jsx#installation

如果有react的基础,上手这个就很容易啦

代码语言:javascript复制
<div id="ul" class="ul">
    {Array.from({ length: 20 }, (i, len) => (
        <div class="li">
            <div class={"mar mar"   len}>
                <span class="checkbox"></span>
                <input type="checkbox" />
            </div>
        </div>
    ))}
</div>

注意要使用v-html时,应更换为

代码语言:javascript复制
<p domPropsInnerHTML={html} />

其他类似的按照链接内容中即可

Babel Preset JSX

Configurable Babel preset to add Vue JSX support. See the configuration options here.

Compatibility

This repo is only compatible with:

  • Babel 7 . For Babel 6 support, use vuejs/babel-plugin-transform-vue-jsx
  • Vue 2 . JSX is not supported for older versions. For Vue 3 support, there is an experimental plugin available as @ant-design-vue/babel-plugin-jsx.

Installation

Install the preset with:

代码语言:javascript复制
npm install @vue/babel-preset-jsx @vue/babel-helper-vue-jsx-merge-props

Then add the preset to babel.config.js:

代码语言:javascript复制
module.exports = {
  presets: ['@vue/babel-preset-jsx'],
}

Syntax

Content

代码语言:javascript复制
render() {
  return <p>hello</p>
}

with dynamic content:

代码语言:javascript复制
render() {
  return <p>hello { this.message }</p>
}

when self-closing:

代码语言:javascript复制
render() {
  return <input />
}

with a component:

代码语言:javascript复制
import MyComponent from './my-component'

export default {
  render() {
    return <MyComponent>hello</MyComponent>
  },
}

Attributes/Props

代码语言:javascript复制
render() {
  return <input type="email" />
}

with a dynamic binding:

代码语言:javascript复制
render() {
  return <input
    type="email"
    placeholder={this.placeholderText}
  />
}

with the spread operator (object needs to be compatible with Vue Data Object):

代码语言:javascript复制
render() {
  const inputAttrs = {
    type: 'email',
    placeholder: 'Enter your email'
  }

  return <input {...{ attrs: inputAttrs }} />
}

Slots

named slots:

代码语言:javascript复制
render() {
  return (
    <MyComponent>
      <header slot="header">header</header>
      <footer slot="footer">footer</footer>
    </MyComponent>
  )
}

scoped slots:

代码语言:javascript复制
render() {
  const scopedSlots = {
    header: () => <header>header</header>,
    footer: () => <footer>footer</footer>
  }

  return <MyComponent scopedSlots={scopedSlots} />
}

Directives

代码语言:javascript复制
<input vModel={this.newTodoText} />

with a modifier:

代码语言:javascript复制
<input vModel_trim={this.newTodoText} />

with an argument:

代码语言:javascript复制
<input vOn:click={this.newTodoText} />

with an argument and modifiers:

代码语言:javascript复制
<input vOn:click_stop_prevent={this.newTodoText} />

v-html:

代码语言:javascript复制
<p domPropsInnerHTML={html} />

Functional Components

Transpiles arrow functions that return JSX into functional components, when they are either default exports:

代码语言:javascript复制
export default ({ props }) => <p>hello {props.message}</p>

or PascalCase variable declarations:

代码语言:javascript复制
const HelloWorld = ({ props }) => <p>hello {props.message}</p>

0 人点赞