Demo 在线地址:
https://sx00xs.github.io/test/19/index.html
---------------------------------------------------------------
ide: vscode
文件格式:.vue
解析:(待补)
<template> <div id="app"> <pre> <script type="text/javascript"> alert(typeof 12345); <span>//输出number</span> alert(typeof "abc"); <span>//输出string</span> alert(typeof document); <span>//输出object</span> </script> </pre> </div> </template> <script> export default { created(){ alert(typeof 12345); alert(typeof 'abc'); alert(typeof document); } } </script>