MOTOO11 / vuetify-tsx

Vuetify TSX is just a wrapper lib around vuetify components.

Home Page:https://vuetify-tsx.netlify.com

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Vuetify TSX

Netlify Status

Vuetify TSX is just a wrapper lib around vuetify components.

This lib uses vue-tsx-support under the hood to support TSX (JSX for TypeScript).

Setup

yarn add vuetify-tsx
# OR
npm install vuetify-tsx

Usage

import { component } from 'vue-tsx-support';

import { VApp, VContent } from 'vuetify-tsx';

// or import directly
import VApp from 'vuetify-tsx/lib/components/VApp';
import VContent from 'vuetify-tsx/lib/components/VContent';

const App = component({
  name: 'App',
  render() {
    return (
      <VApp>
        <VContent>
          <router-view />
        </VContent>
      </VApp>
    );
  },
});

export default App;

For more examples, see the examples folder in this repository.
You can see the examples by checking out the project and using npm install and then npm run serve.

Tip

Use babel-plugin-import to reduce bundle size.

// inside babel.config.js
module.exports = {
  presets: ['@vue/app'],
  plugins: [
    [
      'import',
      {
        libraryName: 'vuetify-tsx',
        libraryDirectory: 'lib/components',
        camel2DashComponentName: false,
      },
    ],
  ],
};

Contributors

This project exists thanks to all the people who contribute 🚀!

LICENSE

MIT

About

Vuetify TSX is just a wrapper lib around vuetify components.

https://vuetify-tsx.netlify.com


Languages

Language:TypeScript 98.6%Language:HTML 1.1%Language:JavaScript 0.3%