按钮怎么不显示啊 #3348
Unanswered
NarutoOptimus
asked this question in
Q&A
按钮怎么不显示啊
#3348
Replies: 1 comment
-
看看是不是有报错 |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
import { Component } from 'react'
import { View } from '@tarojs/components'
import { Button, Dialog } from '@nutui/nutui-react-taro'
import '@nutui/nutui-react-taro/dist/style.css'
import './index.scss'
interface Props {
item: string;
init: (refresh: boolean) => void;
}
class Index extends Component<Props, { visible: boolean }> {
constructor(props: Props) {
super(props);
this.state = { visible: false };
}
render() {
return (
1111 3333 444
}
}
export default Index
Beta Was this translation helpful? Give feedback.
All reactions