index.vue 454 B

1234567891011121314151617181920212223242526
  1. <template>
  2. <view class="container">
  3. 这是测试的一行文字
  4. <button type="default" @click="clickHandler()">点击弹窗</button>
  5. <seiminModel ref="seiminModel"></seiminModel>
  6. </view>
  7. </template>
  8. <script>
  9. export default {
  10. data() {
  11. return {};
  12. },
  13. methods: {
  14. clickHandler() {
  15. this.$refs.seiminModel.show({
  16. skin: "toast",
  17. content: "你还好吗?",
  18. });
  19. },
  20. },
  21. };
  22. </script>
  23. <style></style>