美文网首页
jquery模版 vue模版常用模版

jquery模版 vue模版常用模版

作者: 秀萝卜 | 来源:发表于2020-05-27 17:55 被阅读0次

    jquery常用

    <!DOCTYPE html>
    <html>
    <head>
    </head>
    <body>
        <script src="https://cdn.bootcdn.net/ajax/libs/jquery/3.5.1/jquery.js"></script>
        <script>
        </script>
    </body>
    </html>
    

    vue常用

    <!DOCTYPE html>
    <html>
    <head>
        <meta charset="utf-8">
        <script src="https://cdn.staticfile.org/vue/2.6.2/vue.min.js"></script>
    </head>
    <style>
    </style>
    <body>
        <div id="app">
        </div>
        <script>
            new Vue({
                el: '#app',
                data: {
                    message: 'Hello',
                },
                methods :{
                    
                }
            })
        </script>
    </body>
    </html>
    

    相关文章

      网友评论

          本文标题:jquery模版 vue模版常用模版

          本文链接:https://www.haomeiwen.com/subject/fekgahtx.html