# 示例
```
<template>
<sohelp-window
refid:'測試!表單'
ref: "sohelpWindow"
hide:true
>
</template>
<script>
export default {
name:'windowTest',
mouted(){
let win = $ref('測試!表單') ;//獲取SohelpWindow實例
win.show(); //顯示窗口
win.hide(); //隱藏窗口
}
}
</script>
```