1
import App from './App';
const App = require('./App');
require和import没有什么区别,这是两种js模块化规范而已
两个js文件互相require,导致其中一个取不到值
1234
<!-- item.wxml --><template name="item"> <text>{{text}}</text></template>
12
<import src="item.wxml"/><template is="item" data="{{text: 'forbar'}}"/>
<!-- header.wxml --><view> header </view>
123
<!-- index.wxml --><include src="header.wxml"/><view> body </view>
include
<template/>
<wxs/>