<template>
<div>
<am-button
@click="handleClick"
text="确定"
type="primary"/>
</div>
</template>
<script>
import { AmButton } from 'weex-amui';
export default {
components: { AmButton },
methods: {
handleClick () {
// enter your code
}
}
};
</script>
// 增加一个plugins的配置到 .babelrc 中
{
"presets": ["es2015", "stage-0"],
"plugins": [
[
"component",
{
"libraryName": "weex-amui",
"libDir": "packages",
"style": false
}
// 如果要和 weex-ui 一起用,配置加上下面这个
,{
"libraryName": "weex-ui",
"libDir": "packages",
"style": false
}
]
]
}
{
...
"plugins": [
["import",[
{
"libraryName": "weex-amui",
"libraryDirectory": "packages",
"style": false
}
]
...
}