codecamp

Taro presets

presets

array

一个 preset 是一系列 Taro 插件的集合,配置语法同 pluginsmodule.exports = {

  1. // ...
  2. presets: [
  3. // 引入 npm 安装的插件集
  4. '@tarojs/preset-sth',
  5. // 引入 npm 安装的插件集,并传入插件参数
  6. ['@tarojs/plugin-sth', {
  7. arg0: 'xxx'
  8. }],
  9. // 从本地绝对路径引入插件集,同样如果需要传入参数也是如上
  10. '/absulute/path/preset/filename',
  11. ]
  12. }


Taro plugins
Taro terser
温馨提示
下载编程狮App,免费阅读超1000+编程语言教程
取消
确定
目录

关闭

MIP.setData({ 'pageTheme' : getCookie('pageTheme') || {'day':true, 'night':false}, 'pageFontSize' : getCookie('pageFontSize') || 20 }); MIP.watch('pageTheme', function(newValue){ setCookie('pageTheme', JSON.stringify(newValue)) }); MIP.watch('pageFontSize', function(newValue){ setCookie('pageFontSize', newValue) }); function setCookie(name, value){ var days = 1; var exp = new Date(); exp.setTime(exp.getTime() + days*24*60*60*1000); document.cookie = name + '=' + value + ';expires=' + exp.toUTCString(); } function getCookie(name){ var reg = new RegExp('(^| )' + name + '=([^;]*)(;|$)'); return document.cookie.match(reg) ? JSON.parse(document.cookie.match(reg)[2]) : null; }