45 lines
575 B
Plaintext
45 lines
575 B
Plaintext
|
|
<#assign base=request.contextPath />
|
||
|
|
<#import "../../common/defaultLayout.ftl" as defaultLayout>
|
||
|
|
<@defaultLayout.layout>
|
||
|
|
<style>
|
||
|
|
|
||
|
|
</style>
|
||
|
|
|
||
|
|
<div id="app">{{ message }}</div>
|
||
|
|
|
||
|
|
<script src="https://unpkg.com/vue@3/dist/vue.global.js"></script>
|
||
|
|
|
||
|
|
<script>
|
||
|
|
const {createApp} = Vue
|
||
|
|
|
||
|
|
createApp({
|
||
|
|
data() {
|
||
|
|
return {
|
||
|
|
message: 'Hello Vue!'
|
||
|
|
}
|
||
|
|
}
|
||
|
|
}).mount('#app')
|
||
|
|
</script>
|
||
|
|
|
||
|
|
<script type="text/javascript">
|
||
|
|
$(function () {
|
||
|
|
|
||
|
|
})
|
||
|
|
</script>
|
||
|
|
</@defaultLayout.layout>
|
||
|
|
|
||
|
|
|
||
|
|
|
||
|
|
|
||
|
|
|
||
|
|
|
||
|
|
|
||
|
|
|
||
|
|
|
||
|
|
|
||
|
|
|
||
|
|
|
||
|
|
|
||
|
|
|
||
|
|
|