wepy中自定义wepy文件模板

2019-05-28  本文已影响0人  Nisus_Liu

File and code Template 中新增模板

命名wpy

image.png

将下面的代码复制到右侧的脚本区域

##<!--
##  ${type}
##  ${className}
##-->
## class name
##缺省使用文件名, 但文件名不符合规范类名时, 需要手动指定
#if (${className} == '')
  #set($cName=${NAME})
#else
  #set($cName=${className})
#end
##类型: app, page, component
##支持首字母简写
#if (${type} == 'app' || ${type} == 'a')
  #set($wtype="app")
#elseif(${type} == 'component' || ${type} == 'c')
  #set($wtype="component")
#else
  #set($wtype="page")
#end
<!-- ${wtype}: ${NAME}, created at ${DATE} ${TIME}, by Nisus-Liu -->
<style>
  /*css*/
</style>
  
<template>
  <view>
    
  </view>
</template>
  
<script>
  import wepy from 'wepy'
  
  export default class ${cName} extends wepy.${wtype} {
    config = {}
    components = {
      
    }
    props = {
      
    }
    
    data = {
      
    }
    
    methods = {
      
    }
    
    events = {
      
    }
    
    onLoad(options) {
      
    }
  }
</script>

效果

Alt+Insert或右键, 新建文件, 选择 wpy.

image.png

选择文件类别


image.png
上一篇下一篇

猜你喜欢

热点阅读