오늘은 아주 아주 간단한 meteor template 버튼 event에 대해 짧게 써볼 예정이다!
event를 실행하기 전에 해당 html,js를 main.html, main.js에 import 시켜주자!
템플릿 태그 중 인클루전 태그라는 문법이다 --> {{> html 파일 이름 }}
import {Meteor} from "meteor/meteor";
import {Template} from "meteor/templating";
import './main.html';
import './설정한 html 파일이름.html'
<template name="사용할 이름">
<button class="button-management button is-info is-dark" style="min-width: 150px">관라하기</button>
</template>
import {Template} from "meteor/templating";
Template.template에서 지정해준 이름.events({
'click .button-management'() {
alert('안녕하세요, meteor test중입니다!@!');
},
아주 이벤트가 잘 실행이 된 것을 볼 수 있죠?? 😆