camera.vue 275 B

1234567891011121314151617181920212223
  1. <template>
  2. <view>
  3. <camera device-position="back" flash="off" @error="error" style="width: 100%; height: 300px;"></camera>
  4. </view>
  5. </template>
  6. <script>
  7. export default {
  8. data() {
  9. return {
  10. }
  11. },
  12. methods: {
  13. }
  14. }
  15. </script>
  16. <style>
  17. </style>