Skip to content

SirM2z/rax-helper

Repository files navigation

Rax-helper

Rax-helper is a VS Code extension for Rax.js.

Features

  • Autocomplete
  • Snippets
  • support JavaScript and TypeScript language

Usage

rax-helper

Snippets

Support snippets list:

  • toast

    Toast.show("", 2000);
    
  • alert

    alert({
      title: 'title',
      content: 'content',
      buttonText: 'tbuttonText'
    }).then(() => {
      console.log('sure');
    });
    
  • confirm

    confirm({
      title: 'title',
      content: 'tcontent',
      confirmButtonText: 'confirmButtonText',
      cancelButtonText: 'cancelButtonText'
    }).then((confirm) => {
      console.log(confirm);
    });
    
  • navpush

    Navigate.push({
      url: 'url',
      animated: true // only support weex
    }).then(() => {
    });
    
  • navpop

    Navigate.pop({
      animated: false // only support weex
    }).then(() => {
    });
    
  • navgo

    Navigate.go({
      step: '-1',
      animated: false // only support weex
    }).then(() => {
    });
    

Tips

You can put intelliSense in advance by setting "editor.snippetSuggestions": "top"

Enjoy! 😄

About

⚒️ Visual Studio Code plugin for Rax.js

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published