unshareable.vue 356 B

123456789101112131415161718192021222324
  1. <template>
  2. <view>
  3. <sudoku />
  4. </view>
  5. </template>
  6. <script>
  7. import sudoku from "./modules/sudoku"
  8. export default {
  9. components: { sudoku },
  10. data() {
  11. return {
  12. }
  13. },
  14. onLoad() {
  15. uni.setNavigationBarTitle({
  16. title: '活动抽奖'
  17. });
  18. }
  19. }
  20. </script>
  21. <style lang="scss" scoped></style>