123456789101112131415161718192021222324 |
- <template>
- <view>
- <sudoku />
- </view>
- </template>
- <script>
- import sudoku from "./modules/sudoku"
- export default {
- components: { sudoku },
- data() {
- return {
- }
- },
- onLoad() {
- uni.setNavigationBarTitle({
- title: '活动抽奖'
- });
- }
- }
- </script>
- <style lang="scss" scoped></style>
|